We have an encoding process in place using ffmpeg on Mac OS X. This process will take a source video and a couple files from that: .m3u8 video, .mp4 video and .mp3 audio file.

By default we've used the video from our m3u8 process which is a h264 (via libx264) video with AAC (via libfaac) audio.

We are mostly using these videos on mobile devices (hence the m3u8 files) but we also use the .mp4 files for Android, Windows Phone, etc. More and more we also need to offer these same videos on the web via either a flash player or HTML5 player.

Therefore, we'd like to have the best audio/video codec combo for all these uses ... where I'm confused is to what is "standard" for a .mp4 file?

If the .mp4 uses the mp3 codec then it plays just fine everywhere but QuickTime, in QuickTime the video plays but there is not audio (works just fine in VLC player tho.)

I've been told it's due to how QuickTime uses file extensions to assume information about the video instead of trying to actually get the codec data from the file? This does make some sense, if we encode the same file but use AAC for the audio codec then it works just fine in QuickTime.

So --- what's the "correct" or "ideal" audio/video codec combo --- is it best and safe to use AAC (i.e. will it work on a broad range of devices) even though it's not a "free" codec?

link|improve this question

75% accept rate
I believe MP4 does not officially support MP3. – LordNeckbeard Feb 6 at 23:42
@LordNeckbeard yea that's where I'm a little confused --- .mp4, as it was originally created seems to be AAC audio, from Apple. But it sure didn't stay that way. – Justin Jenkins Feb 6 at 23:47
1  
these days, either works fine. aac will probably be slightly better quality for lower bitrates. – wim Feb 7 at 1:13
feedback

1 Answer

Definitely use the AAC codec, as you said, it works on a wider range of devices and it is better for use in HTML5

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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