- Oct 14, 2014
- 32
- 0
- 0
Video Streaming HTML5 cannot reposition in video using progress bar slider
I'm having a problem with video streaming to android phones from a web site. The web site uses html5 video tag to stream the data. It works fine on PCs with any browser, but only works in Android if you use the Firefox browser. It does not work on the Note 3 browser, Dolphin, or Chrome browsers in Android. I'm currently testing on a Note 3 running KitKat 4.4 2. How can the code for the website be changed to enable positioning in the video by dragging the progress bar like you can on the PC and Firefox for Android?
The web site uses the standard HTML video tag:
<video id=0 controls width=640 height=360 poster="http://www.example.com/media/example-video.jpg">
<source src="example-video.ogv" type='video/ogg; codecs="theora, vorbis"'/>
<source src="example-video.webm" type='video/webm' >
<source src="example-video.mp4" type='video/mp4'>
<p>Video is not visible, most likely your browser does not support HTML5 video</p>
</video>
Your browser does not support the video tag.
</video>
I'm having a problem with video streaming to android phones from a web site. The web site uses html5 video tag to stream the data. It works fine on PCs with any browser, but only works in Android if you use the Firefox browser. It does not work on the Note 3 browser, Dolphin, or Chrome browsers in Android. I'm currently testing on a Note 3 running KitKat 4.4 2. How can the code for the website be changed to enable positioning in the video by dragging the progress bar like you can on the PC and Firefox for Android?
The web site uses the standard HTML video tag:
<video id=0 controls width=640 height=360 poster="http://www.example.com/media/example-video.jpg">
<source src="example-video.ogv" type='video/ogg; codecs="theora, vorbis"'/>
<source src="example-video.webm" type='video/webm' >
<source src="example-video.mp4" type='video/mp4'>
<p>Video is not visible, most likely your browser does not support HTML5 video</p>
</video>
Your browser does not support the video tag.
</video>