Improving Video SEO With Bitmovin player

When the Google search engine crawls an HTML page, the presence of “video tags” may improve that page’s SEO ranking. To trigger the bitmovin player to use a video tag, the following sample code could be considered:

<body>
<div class="container">
  <div class="content">
    <div class="player-wrapper">
      <div id="player">
        <video id="myVideo"></video>
      </div>
    </div>
  </div>
</div>
<script type="text/javascript">
  var conf = { /* your config */  };
  var player = new bitmovin.player.Player(document.getElementById('player'), conf);            
  player.setVideoElement(document.getElementById('myVideo'));
  player.load(source);
</script>
</body>