vote up 1 vote down star

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.

flag

Wait, does any UA even support HTML5 yet? – MiffTheFox Jun 29 at 1:18
The latest versions of IE, Firefox, Opera, Safari and Chrome all support parts of HTML5. – David Dorward Jun 30 at 12:36
youtube.com/html5 doesn't work in IE8 or Chrome 2. Did not expect it to work in Safari 4, but it did! Expected it to work in Firefox 3.5, but for some reason it failed. – Nosredna Jul 1 at 21:09
Chrome 2 doesn't support video - it is added in Chrome 3. IE8 doesn't support video. Firefox 3.5 supports Ogg Theora video but not (for legal reasons) h.264 (which is what YouTube uses) – David Dorward Jul 7 at 9:31

3 Answers

vote up 8 vote down check

From the HTML5 spec (at present):

User agents should not provide a public API to cause videos to be shown full-screen. A script, combined with a carefully crafted video file, could trick the user into thinking a system-modal dialog had been shown, and prompt the user for a password. There is also the danger of "mere" annoyance, with pages launching full-screen videos when links are clicked or pages navigated. Instead, user-agent specific interface features may be provided to easily allow the user to obtain a full-screen playback mode.

Browsers may provide a user interface, but shouldn't provide a programmable one.

link|flag
vote up 0 vote down

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!

link|flag
vote up 1 vote down

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.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.