Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Question for the video tag, the following code works for every browsers expect opera mini, any ideas why? i don't even see a video frame when i view the page under my iphone and ipad with opera mini.

<!DOCTYPE HTML>

<html>

<h1>Test Page</h1>

<body>

    <video id="movie" width="320" height="240" preload controls>

        <source src="Untitled.m4v" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' />

        <source src="iStock_000010231386HD720.ogv" type='video/ogg; codecs="theora, vorbis"'/>

        <source src="Untitled.webm" type='video/ogg; codecs="theora, vorbis"'/>

    </video>

</body>

</html>
share|improve this question

2 Answers

up vote 2 down vote accepted

Opera Mini isn't a browser in the classic sense:

From http://www.opera.com/mobile/specs/:

Opera Mini always uses Opera’s advanced server compression technology to compress web content before it gets to a device. The rendering engine is on Opera’s server.

Which is why it won't support the video tag.

share|improve this answer
Thanks totally understand now! – bluebill1049 Jan 17 '12 at 0:25

Opera mini for iPhone simply does not support html5, thereby it will not display your video.

Also see: http://www.opera.com/docs/specs/productspecs/ and http://forum.brightcove.com/t5/General-Development/html5-on-Opera-mini-browser-iphone/td-p/5341

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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