You can access this particular element by creating: <video width="320" height="240" controls="controls"> <source src="movie.ogg" type="video/ogg" /> <source src="movie.mp4" type="video/mp4" /> <source src="movie.webm" type="video/webm" /> Your browser does not ...
15
votes
3answers
15k views
How do you detect HTML5 video events?
How do you detect when a HTML5 <video> element has finished playing? I found a spec mentioning an ended event, but I don't really know how to interact with it.
Thanks!
14
votes
2answers
1k views
iOS5: Exception on UIWebView in modal UIViewController playing Youtube video
I am currently working on adapting an existing iOS 4 application with the new iOS 5 SDK.
I found a new crash when presenting a UIWebView in a modal view controller that reads a Youtube video.
...
14
votes
1answer
757 views
Implementing onShowCustomView on Android 3.1 throws exception in HTML5VideoFullScreen
I'm trying to play video in html on fullscreen. When I click on fullscreen button in video method onShowCustomView is fired. Here is my implementation:
public void onShowCustomView(View view, ...
12
votes
4answers
4k views
HTML5 video seeking on iPad
I have an HTML5 video player with a custom seek bar, that's working great on the iPhone (playing inline) and on the browser.
It plays great on the iPad too and the seek bar is updated as the movie ...
11
votes
3answers
1k views
HTML5 video on iOS5 not loading/showing
I have an HTML/JS app running in a webview in an iPad app. The app uses the HTML5 video tag. Videos work fine in iOS4.3 but today I've tested on iOS5 and the videos simply do not show up.
I have ...
11
votes
7answers
6k views
HTML5 offline video caching in mobile safari
I can't seem to get Safari on the iPhone or iPad to offline cache videos. Everything else gets cached just fine when I go offline. The video file is obviously in the manifest, but I just get the ...
9
votes
5answers
2k views
rounded corners on html5 video
Is there a way I can cut off the corners of my html5 video element using the CSS3 border-radius attribute?
Check out this example. it's not working.
9
votes
2answers
686 views
Is html5 video ready for primetime yet?
I've been asked to develop a website for the iPad. It's going to have a couple videos on it. I'd like to try out html5. I'd really only be using the new video part of html5 (with flash fallback for ...
8
votes
4answers
477 views
Playing HTML5 video backwards on iOS
I'm trying to play an HTML5 video in reverse on an iPad (The video needs to switch between forward and reverse arbitrarily based on user input).
The HTML5 <video> element includes a property ...
8
votes
4answers
5k views
Play/pause HTML 5 video using JQuery
I am trying to control HTML5 videos using JQuery. I have two clips in a tabbed interface, there are six tabs in total, the others just have images. I am trying to make the video clips play when their ...
8
votes
6answers
6k views
Is there a way to use DRM on HTML5 video?
Since Flash is losing ground I would like to know if there are ways to protect html5 videos with DRM (H264, .ogg and WebM).
Update
Found out that safari supports HTML5 drm hinting with .mov files. ...
7
votes
4answers
2k views
Start HTML5 video at a particular position when loading?
i am trying to play HTML5 video (VP8 encoded). What i want is to play it at a certain position lets say at time 50 seconds onward.
I have tried but there seem to be some problem. Can you suggest if ...
7
votes
3answers
979 views
How do i change the src of an html5 video via javascript without either crashing chrome or leak memory?
I'm working on an application running on Chrome only.
I need to be able to switch the source from a playing video.
I've used javascript (&jQuery) to change the src attribute :
...
7
votes
6answers
3k views
iPad Safari mobile seems to ignore z-indexing position for html5 video elements
I got a video element on a page that's working fine both in safari mobile and desktop.
I have a seme-transparent pull-down menu that's working fine. The problem is, when the menu is over the video ...
7
votes
3answers
1k views
HTML5 Video Not Displaying on iPad
I've encoded a few videos on http://www.theparkerpalmsprings.com to play using HTML5 when loaded via an iPhone or iPad. In my testing, everything works as expected when viewing the site on an iPhone ...
7
votes
2answers
9k views
HTML5 <video> callbacks?
I'm working on a site for a client and they're insistent on using HTML5's video tag as the delivery method for some of their video content. I currently have it up and running with a little help from ...
6
votes
0answers
86 views
Multiple HTML5 media elements on one page in iOS
My research has led me to learn that Apple's media element handler is a singleton, meaning I can't have a video playing while an audio is playing in the background. I'm tasked to build a slideshow ...
6
votes
3answers
254 views
How can I detect whether a browser supports MJPEG?
Modern browsers except IE handle MJPEG (Motion JPEG). Here is an example fiddle.
Can I detect support for MJPEG? I have looked through Modernizr in vain.
6
votes
3answers
6k views
Accessing webcam with Javascript
I want to develop a web application to get a video stream from the webcam and process. i tried to google and find whether there any way to do it in javascript but i only came up with some flash ...
6
votes
2answers
2k views
HTML5 Video “Black Screen” on iPad
I'm building a website that has videos embedded within them. This website needs to cater for iPad users as well but I'm having trouble with the ol' video tag at the moment. I have a video that plays ...
6
votes
3answers
426 views
Support landscape mode for HTML5 video in UIWebView in UITabBarController
I've got a UIWebView inside a UINavigationController in a UITabBarController. Sometimes the pages displayed by the UIWebView contains HTML5 video objects.
The video starts playing as expected, but ...
6
votes
4answers
2k views
HTML5 Video - Percentage Loaded?
Does anyone know what event or property I need to query in order to get a percentage figure of the amount an HTML5 video has loaded? I want to draw a CSS styled "loaded" bar that's width represents ...
6
votes
6answers
2k views
UIWebView loading html5-Video EXC_BAD_ACCESS crash
in our iPad-App we are using an UIWebView to load different sites from one domain some of them with a hml5-Video.
Sites without a Video do load perfectly. But when I'm loading a site containing ...
6
votes
2answers
986 views
HTML5 frame-by-frame viewing / frame-seeking?
I'm looking for a way to view HTML5 <video>, frame-by-frame.
The scenario: Having a video, with an additional button that skips to the next frame when pressed.
What do you think is the best ...
6
votes
3answers
17k views
Can you display HTML5 <video> as a full screen background?
How can you display HTML5 <video> as a full screen background to your website? Similar to this Flash site demo...
...
6
votes
3answers
1k views
z-index layering for HTML5 video (ipad) [closed]
Possible Duplicate:
iPad Safari mobile seems to ignore z-indexing position for html5 video elements
I am using the BrightCove smartplayer code to write an HTML5 video tag into the page. ...
6
votes
2answers
4k views
.ogg video not playing in firefox
We're just getting started with html5 video, and cannot seem to get .ogg files to play in Firefox, any tips? Here is the source we are using:
<video width="640" height="360" ...
6
votes
5answers
338 views
In which case would HTML5 be advantageaous compared to flash?
I have read a few articles, I can't see why one would use html5 instead of flash so any few examples which could show the advantages ?
6
votes
1answer
19k views
Does Android 2.1's Browser Support HTML 5 and What Video Format Does It Play?
The company I work for produces a lot of video and we want to target as many devices as possible, but the question came up of what does the Android do?
I personally own an Android based phone running ...
5
votes
2answers
277 views
Multiple audio tracks for HTML5 video
I'm building a video for my website with HTML5. Ideally, I'd have only one silent video file, and five different audio tracks in different languages that sync up with the video.
Then I'd have a ...
5
votes
2answers
281 views
Mobile Safari makes multiple video requests
I am designing a web application for iPad which makes use of HTML5 in mobile safari. I am transmitting the file manually through an ASP.NET .ashx file hosted on IIS 7 running .NET Framework v2.0.
...
5
votes
1answer
1k views
Javascript to stop HTML5 video playback on modal window close
I've got a html5 video element on a modal window. When I close the window the video continues to play. I'm a total newbie to JS. Is there an easy way to tie a video playback stop function to the ...
5
votes
1answer
146 views
Non-linear volume for HTMLMediaElement
I've written my own media player interface using javascript and html5. Currently my volume slider maps to the browser's volume attribute 1:1. I'd quite like to adjust this to account for perceived ...
5
votes
1answer
785 views
Mobile Safari: link (<a>) element over video element does not work on click
my current project is a html website that contains a dropdown menu (javascript/jquery) and a html5 videoplayer (video-tag only).
When clicking on a menu entry, the dropdown submenu overlays the ...
5
votes
4answers
4k views
Fancybox popup + JSVideo HTML5 Video - Why do i lose my controls?
I'm using JQuery plugins Fancybox and JSVideo, ultimately i want a video to popup via fancybox and have the HTML5 video play in that popup
I have this working - the only problem is that the video ...
5
votes
4answers
16k views
video as site background? HTML 5
I want to use a video as a background instead of an image that automatically stretches to the whole screen (background).
I would also like to rotate videos and images.. so that there is a random ...
4
votes
1answer
97 views
HTML 5 video tag: is it possible to set src to a network resource?
For an internal website, I'm trying to show an inline video of an avi file on the network.
<video class="VideoTagLink" src="file://\\network\path\file.avi" controls="controls"></video>
...
4
votes
1answer
265 views
Can I get the number of the current frame in an HTML5 video?
I am currently trying to customize an HTML5 video player so that I can add a button that returns the current frame number.
Lets say I have a 30fps video that lasts 90 seconds. When I click on that ...
4
votes
1answer
264 views
How do I detect if the HTML5 autoplay attribute is supported?
How do I best detect whether a browser's HTML5 video element supports autoplay?
On current iOS Safari, for example, autoplay is disabled.
Update: I now designed the web page in such a way that it ...
4
votes
2answers
282 views
How to tell if a <video> element is currently playing?
I see that the MediaElement interface exposes attributes like paused, seeking, and ended. Missing from the list, however, is playing.
I know there are playing events that fire when an element starts ...
4
votes
4answers
493 views
Using jQuery to determine video file size
I am using videojs to play html5 videos, of varying dimensions. Is it possible to detect the height/width of a video file using jQuery (or another scripting language for that matter) so that I can ...
4
votes
1answer
920 views
HTML5 Video Fails in IE9 RC but not IE9 Beta
I have project that relies heavily on video and leverages html5 video when available. This was working across all browsers up until the IE9 RC was released about a week ago! This is very frustrating!
...
4
votes
4answers
618 views
HTML5 Video Dimensions
I'm trying to get the dimensions of a video of which I'm overlaying onto a page with javascript, however it is returning the dimensions of the poster image instead of the actual video as it seems it's ...
4
votes
1answer
2k views
missing html5 video “ended” event on iPad
Sometimes my HTML5 video does not generate an "ended" event on the iPad. Seems only to happen when I omit the "controls" attribute and start playback from javascript. It usually works fine the first ...
4
votes
3answers
667 views
HTML5 live video “hack”
For the last two month I have been trying to "fool" safari into thinking that it's looking at a file on the server, which in fact is a live video stream from a camera encoded and muxed upon request ...
4
votes
2answers
3k views
HTML5 Video Element on iPad doesn't fire onclick or touchstart events?
I'm trying to attach some events to an HTML5 Video element inside my iPad web app but they don't seem to be firing? I've tested this both on the device and in the simulator and get the same results. ...
4
votes
5answers
671 views
HTML5 video codec support
What codecs will be supported with the HTML5 video tag?
Will it vary by browser, or is there a spec of specific codec that will be supported?
3
votes
3answers
87 views
Vimeo embed issue on iPhone
Here is my dilemma:
I am creating a site that will allow users to submit videos that will be posted to the site. The user submits a Vimeo link and the video gets posted in an embedded format to the ...
3
votes
1answer
95 views
How to get position change events in Javascript for <video> in Mobile Safari?
I want to execute a JavaScript function every second, or whenever the time position changes on a Mobile Safari video player during playback.
Is there an event listener or some way of achieving this? ...
3
votes
0answers
168 views
html5 video wont play on iPad - plays on iPhone
I have a m4v video that is able to play using html5 video tag on the iPhone - but it wont play on the iPad using html5. If i go directly to the video file from the iPad it plays fine- But if I use the ...