MP4 plays on Safari 4 (desktop) but not on Safari Mobile (iphone)
Posted
by deb
on Stack Overflow
See other posts from Stack Overflow
or by deb
Published on 2010-04-22T13:01:52Z
Indexed on
2010/04/22
13:03 UTC
Read the original article
Hit count: 786
I'm encoding the video with ffmpeg and displaying it using the HTML 5 video tag. It works fine on Firefox (i'm also providing a ogg version) and Safari 4. However, when I try to open it on the iphone I get a "Cannot Play Movie" error.
Here is the ffmpeg command I'm using:
ffmpeg -y -i movie.mov -acodec libfaac -ar 44100 -ab 96k -vcodec libx264 -vpre hq -level 41 -crf 20 -bufsize 20000k -maxrate 1500k -g 250 -s 320X200 -coder 1 -flags +loop -cmp +chroma -partitions +parti4x4+partp8x8+partb8x8 -flags2 +dct8x8+bpyramid -me_method umh -subq 7 -me_range 16 -keyint_min 25 -sc_threshold 40 -i_qfactor 0.71 -rc_eq 'blurCplx^(1-qComp)' -bf 16 -b_strategy 1 -bidir_refine 1 -refs 6 -deblockalpha 0 -deblockbeta 0 movie.mp4
I reduced the maxrate to 1500 because I read that if the bit rate is too high the iphone won't play the video, but still didn't work.
I don't know where else to look... any ideas? Thanks in advance
© Stack Overflow or respective owner