Is there a way to play a video fullscreen using the HTML5 <video> tag?
And if this is not possible, does anybody know if there is a reason for this decision?
|
Is there a way to play a video fullscreen using the HTML5 And if this is not possible, does anybody know if there is a reason for this decision?
| |||||
feedback
|
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.
|
From the HTML5 spec (at present):
Browsers may provide a user interface, but shouldn't provide a programmable one. | |||||||||||||||||
feedback
|
|
Safari supports it through Chrome should support it since it's WebKit also, but errors out. Chris Blizzard of Firefox said they're coming out with their own version of fullscreen which will allow any element to go to fullscreen. e.g. Canvas Philip Jagenstedt of Opera says they'll support it in a later release. Yes, the HTML5 video spec says not to support fullscreen, but since users want it, and every browser is going to support it, the spec will change. | ||||
|
feedback
|
This needs to be called on the video tag element, for example, to fullscreen the first video tag on the page use:
| |||
|
feedback
|
|
I think that if we want to have a open way to view videos in our browsers without any closed source plugins (and all the security breaches that comes with the history of the flash plugin...). The tag has to find a way to activate full screen.. We could handle it like flash does: to do fullscreen, it has to be activated by a left click with your mouse and nothing else, I mean it's not possible by ActionScript to launch fullscreen at the loading of a flash by example. I hope I've been clear enough: After all, I'm only a french IT student, not an english poet :) See Ya! | |||
|
feedback
|
|
No, it is not possible to have fullscreen video in html 5. If you want to know reasons, you're lucky because the argument battle for fullscreen is fought right now. See WHATWG mailing list and look for the word "video". I personally hope that they provide fullscreen API in HTML 5. | |||
|
feedback
|
|
Firefox 3.6 has a full screen option for HTML5 video's, right-click on the video and select 'full screen'. The latest Webkit nightlies also support full screen HTML5 video, try the Sublime player with the latest nightly and hold Cmd / Ctrl while selecting the full screen option. I guess Chrome / Opera will also support something like this. Hopefully IE9 will also support full screen HTML5 video. | |||
|
feedback
|
|
This is supported in WebKit via webkitEnterFullscreen. | |||
|
feedback
|
|
A programmable way to do fullscreen is working now in both Firefox and Chrome (in their latest versions). The good news is that a spec has been draft here: http://dvcs.w3.org/hg/fullscreen/raw-file/tip/Overview.html You will still have to deal with vendor prefixes for now but all the implementation details are being tracked in the MDN site: | |||
|
feedback
|
|
An alternative solution would be to have to browser simply provide this option on the contextual menu. No need to have Javascript to do this, though I could see when it would be useful. In the mean time an alternative solution would simply be to maximise the window (Javascript can provide screen dimensions) and then maximise the video within it. Give it a go and then simply see if the results are acceptable to your users. | |||
|
feedback
|
|
You can change the width and height to be 100%, but it won't cover the browser chrome or the OS shell. Design decision is because HTML lives inside the browser window. Flash plugins aren't inside the window, so they can go full screen. This makes sense, otherwise you could make img tags that covered the shell, or make h1 tags so the whole screen was a letter. | |||
|
feedback
|
|
Youtube by default runs via flash with a pc or mac computer, unless specified otherwise. Devices like iphone implement browser handled fullscreen. But yeah I like the idea of a javascript popup, detecting your resolution and creating only a slightly noticeable frame for fullscreen, allowing to user to discern between that and their os. Overall IE doesn't support HTML5 by default, as with firefox 2 which many people are still using. PowerPC systems do not support firefox3 if i remember. Sucks if you got 5k G5 3 years ago. | |||
|
feedback
|
|
HTML 5 video does go fullscreen in the latest nightly build of Safari, though I'm not sure how it is technically accomplished. | |||
feedback
|
|
There you find the solution: www.html5-fullscreen-video.com | |||
|
feedback
|
|
Yes. Well what happens with HTML5 video is that you just put the | |||
|
feedback
|
|
it's simple, all the problems can be solved like this, 1) have escape always take you out of fullscreen mode (this doesn't apply to manually entering fullscreen through f11) 2) temporarily display a small banner saying fullscreen video mode is entered (by the browser) 3) block fullscreen action by default, just like has been done for pop-ups and local database in html5 and location api and etc, etc. i don't see any problems with this design. anyone think i missed anything? | |||
|
feedback
|
|
As of Chrome 11.0.686.0 dev channel Chrome now has fullscreen video. | |||
|
feedback
|
|
You can do this if you tell to user to press F11(full screen for many browsers), and you put video on entire body of page. | |||
|
feedback
|
|
I was looking for solutions to the same problem an I came across this HTML5 fullscreen video Have a look at videoplayer.js and prototype.js Answer's a year late for this thread but may help others on the same path like me. | |||
|
feedback
|
|
Youtube's html5 player breaks Safari's ability to use true fullscreen, but look for youtube5 safari extension and that will solve the fullscreen issue while taking away youtube-specific video features. http://www.verticalforest.com/2010/06/09/youtube5-html5-converter-for-youtube-videos/ ^Or go straight to the developer's site and download it. Also, video for everybody allows true fullscreen since it also uses Safari's html5 player (if you're running it through Safari). | |||
|
feedback
|