<!doctype html>
<html>

<head>
  <meta charset="UTF-8">
  <title>Untitled Document</title>
  <style>
    .video-js {
      height: 344px;
      width: 610px;
    }
  </style>
</head>

<body>
  <video id="myPlayerID"
  data-account="1752604059001"
  data-player="52d490a5-eef6-4e2e-a39f-d9c4b212d45f"
  data-embed="default"
  controls
  class="video-js">
  </video>
  <script src="//players.brightcove.net/1752604059001/52d490a5-eef6-4e2e-a39f-d9c4b212d45f_default/index.min.js"></script>
  <script>
    videojs('myPlayerID').ready(function(){
    var myPlayer = this;
    //to autoplay set to true
    myPlayer.autoplay(true);
    //url of video you want to play 
    myPlayer.src("http://video.webmfiles.org/big-buck-bunny_trailer.webm");
    });
  </script>
</body>

</html>
// Code goes here

/* Styles go here */