HTML5 video is an element introduced in the HTML5 draft specification for the purpose of creating a standards-compliant, plugin-free way for playing videos and movies, partially replacing the object element.
5
votes
0answers
430 views
HTML5 Video in Chrome/PC
Been working with HTML5 video for a bit now - I found that in order to cover all my bases for browsers, I need 3 formats for my html5 video player: .mp4, .ogv, and .webm (with a flash player fallback ...
4
votes
0answers
708 views
Why will mp4 video not work when http basic authentication enabled?
I am trying to get video to play in an HTML5 video tag using the following code:
<video id="video" width="768" height="432" controls>
<source src="http://example.com/videos/example.mp4" ...
3
votes
0answers
81 views
Appending .webm video chunks using the Media Source API does not work for every video
I have modified this example in order to run it with my own videos.
It does not work for any video.
In particular, it does not start to play if the video has a duration > 5 sec (I mean the complete ...
3
votes
0answers
111 views
video streaming flow control on Apache
I have set up a Apache server with mod_h264_streaming-2.2.7 module installed. The client can view a .mp4 video via html5 or flash player embedded in a webpage.
I intend to regulate the flow rate for ...
3
votes
0answers
55 views
Issue with HTML5 Window Embed Statements in Safari 6
The issue is that video displayed in an HTML embed statement with percentage height and width used to scale to the window/frame that it belonged to. With a recent change to Safari (V6?), these videos ...
3
votes
0answers
1k views
HTML5 Video in WebView in ICS
The old trick WebView and HTML5 <video> works great until Android 3+. The problem with ICS is the video can play both inline and fullscreen, but when I lock the screen, the video will continue ...
3
votes
0answers
151 views
Approaches for debugging HTML5 video on an iPad
I'm writing a video encoder/server to serve video to a web application intended to run on an iPad. The iPad uses an HTML5 video tag to retrieve and decode the video, and I'm running into issues where ...
3
votes
0answers
362 views
HTML5 video 'progress' event isn't firing as expected for chrome anymore
I've been developing a set of canvas based video controls for a html5 video. Until recently, everything was working perfectly. Once the video starts buffering, my javascript event listener for the ...
3
votes
0answers
1k views
Youtube iframe embed: force Flash?
Is it possible to enforce the flash version of an YouTube video when including it using the new iframe-embed mode?
I don't want the HTML5 version since it is to much hassle for average users (full ...
2
votes
0answers
24 views
How to play HTML 5 videos in native palyer?
I've a HTML5 webpage and I've included a video in it. I would like know, If a user try to play that video on the IPad can we open that in navtive palyer?
I even tried following blog post ...
2
votes
0answers
77 views
Record screen (screencast) using HTML5, e.g. getUserMedia or something?
Is there some HTML5 API that can help me record the screen (screencast)? I know about recording webcams etc, but I need the screen it self. It would help even more if this API was actually implemented ...
2
votes
0answers
162 views
Html5 video on iPad Swallows Events. Using Vimeo
I have the same issue as this post here. HTML5 Video Element on iPad doesn't fire onclick or touchstart events?
I have forward and back buttons that overlay the video. When the video is playing ...
2
votes
0answers
189 views
Not able to catch on play , pause event of video and audio mediaelement.js in case of IPAD or Iphone
I am trying the method suggested here Avoid stoping audio or video .
My intention is to Check whether video or audio is playing or not , if its playing all of my links in that page should open in a ...
2
votes
0answers
388 views
Servlet streaming mp4 for html5 video in chrome
i'm trying to stream a movie (mp4 or ogv based upon browser) from a Java servlet to be used in a HTML5 webpage. After doing some research here, i found out that i need to support ranges. In most of ...
2
votes
0answers
202 views
HTML5 Video: Dynamically generated video tag plays only first time
I am using JavaScript to dynamically generate a video player from a given set of "playlist data." This playlist data is basically a list of videos (source URL and Title for each video). When the user ...