Search code examples
ruby-on-railsangularjsvideobrightcove

Embed Brightcove video into my HTML UI from Brightcove video URL


I am trying to embed brightcove video into my Rails + AngularJS application. I have video URL. I had tried with following HTML tag, But that won't work for me. Help me to find solution.

Below is my code :

<video width="320" height="240" controls>
  <source src="http://brightcove.vo.llnwd.net/e1/uds/pd/57838016001/57838016001_1520916807001_Space-Galaxy.mp4" type="video/mp4">  
Your browser does not support the video tag.
</video>

Solution

  • You can try this :

    <embed src="video_URL"></embed>