How to play HTML5 video for a public mp4 file that is in Google Drive?

I want to be able to play public mp4 files stored on my google drive with html5 video texts or custom html5 video players. This file is played in Chrome when you click on the link, but it fails when you play it with an html5 video player like the simple html5 code below, When I put the same file on my apache webserver and point to the url for apache webserver for this file, the html5 video code works fine and the movie plays in the browser.

How to play this as html5 video in my html5 video player using google drive sdk? Please note that I don't want to use google video player but only simple html5 Video tags.

    <body>
<video src="https://docs.google.com/file/d/0B-fYJN-c4UDjZjg0LV9XeTFpTjQ/edit?usp=sharing" autoplay>
      </video></body>

      

+3


source to share





All Articles