I'm in need of a way to re-encoding MKV unproccessed (via Pass Through)...
I pretty much found the solution (see source at the bottom) but I need a little bit of help. As what kind of script do I have to save the script? Anybody willing to help out here or maybe compile the app?
Idea 1:
- Use tsMuxer to extract the video stream and the audio track(s) into separate files.
- Reencode the audio track into AAC with afconvert (comes with OS X, looking at the man page it supports most 2ch and 5.1ch formats)
- Use mp4box to mux the video and audio into a single MP4 file. posted by wongcorgi at 10:34 PM on October 6, 2009
Idea 2:
#!/bin/sh
mencoder -o <new file name> -oac copy -ovc copy -of lavf -lavfopts format=mp4 <old file name>
To make the snippet above into an Drag and Drop application one could use this program:
http://www.advogato.org/proj/DropScript/
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Source: http://ask.metafilter.com/134805/I-need-an-automated-way-to-convert-MKV-to-MP4-on-Mac-OS-X
