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.

I have an MP4 video that I am trying to play via HTML5 on Android and iPad.

The html code is

<video width="510" height="315" autobuffer controls >
    <source src="video.mp4" type="video/mp4" />
</video>

The media information on the video from VLC is

Stream 0:
    Type: Video
    Codec: H264 - MPEG-4 AVC (part 10) (avc1)
    Resolution: 856x368
    Frame rate: 23.976000
    Decoded format: Planar 4:2:0 YUV
Stream 1
    Type: Audio
    Code: MPEG AAC Audio (mp4a)
    Channels: Stereo
    Sample rate: 44100 Hz

I created the video by converting another using ffmpeg using vcodec libx264 acodec aac

The iPad just shows a play icon with a line through on a black screen

Is this likely to happen because the video is in the wrong format?

share|improve this question

1 Answer

You can find an excellent tutorial here that can help you :

http://www.robwalshonline.com/posts/tutorial-serving-html5-video-cross-browser-including-ipad/

I think your problem is the encoding. Ipad video plays well with mov format.

share|improve this answer
I have tried encoding the video as a mov and it makes no difference – Mike Norgate Oct 25 '12 at 8:39

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.