Little bit confused at the moment, I have 2 .mp4 files, both with h.264 encoded video.
| #Safari | Video 1 | Video 2 | | Windows | Failed | Played | | OSX | Played | Played |
My Code
<video width="550" height="400" controls>
<source src="test/charlie.mp4" type="video/mp4" />
<source src="test/charlie.ogv" type="video/ogg" />
Nope.
</video>
Video 1
Status: HTTP/1.1 200 OK Date: Wed, 27 Jun 2012 09:19:02 GMT Server: Apache/2.2.22 (Debian) Last-Modified: Wed, 27 Jun 2012 08:06:41 GMT ETag: "aff04e8-49c7f3-4c36fb1f12640" Accept-Ranges: bytes Content-Length: 4835315 Connection: close Content-Type: video/mp4
Video 2
Status: HTTP/1.1 200 OK Date: Wed, 27 Jun 2012 09:18:37 GMT Server: Apache/2.2.22 (Debian) Last-Modified: Mon, 28 Dec 2009 05:06:33 GMT ETag: "aff04eb-45de48-47bc2de762840" Accept-Ranges: bytes Content-Length: 4578888 Connection: close Content-Type: video/mp4
The ffmpeg command I am using for Video 1 is
ffmpeg -y -i input.avi -vcodec libx264 -r 24 -preset medium -crf 20 -bufsize 20M -acodec libfaac -ac 2 -ar 44100 -ab 128k out.mp4
Anyone seen this kind of behaviour before?