I just need the aac audio stream from it.
+ Reply to Thread
Results 1 to 17 of 17
-
Thanks, I'll give MKVtools a try. I've already tried AVIdemux and it produced an unusable file.
By the way, the download link (http://www.emmgunn.com./downloads/mkvtools2.4.4.zip) is just taking me back to the homepage. -
Solved!
OK so I downloaded it with the hotfile link instead, and it worked. Extracted my audio stream in seconds. Thanks emmgunn. I think this is currently the only app for mac that does this reliably. -
That happened to me too with the link in your post. But by going to the download page first, the link MKVtools 2.4.4 did start a download for me.
-
I was using the download page as well. (Google Chrome) But I just tried it again and now it works. Strange.
edit: aha, the extra "." in the URL has been taken out. Someone must be listening -
QT Player Pro will extract the audio without a problem as will MPEG Streamclip (and a few dozen other apps).
-
Those are the first two apps I tried, in that order, to no avail. I can provide the source file to you if you want to try.
Also, several apps have an option to convert the audio, but not to demux it as is. -
for AAC audio in the source file:
Code:ffmpeg -i sample.mp4 -vn -acodec copy sample.m4a
Code:ffmpeg -i sample.mp4 -vn -acodec copy sample.ac3
-
Sort of. Not in the GUI, but you could use the ffmpeg binary inside the application package.
Use the command line, but instead of "ffmpeg", "sample.mp4", "sample.m4a", write the full path. Or use drag-and-drop, like this:
In the Finder, navigate to ffmpegX. Control-click the application, hold down the mouse until you get the contextual menu. Select Show Package Contents. Open the Contents folder. Open the Resources folder. Find the ffmpeg binary there. Keep this last window open.
Open Terminal. Drag the ffmpeg binary to the Terminal shell window. Terminal will translate this action to the full path to ffmpeg. Type "-i " (with a space at the end). Drag-and-drop your source file. Type "-vn -acodec copy " (with a space at the end). Drag-and-drop your source file again. Backspace a few times to delete the last "mp4", then replace it with the wanted suffix. Hit <enter>. Done. -
Hi Case. I tried it your way, just for shites and giggles.
Code:Joes-MacBook:~ joe$ /ffmpegX/ffmpegX.app/Contents/Resources/ffmpeg -i /Users/joe/Desktop/Jaia.mp4 -vn -acodec copy /Users/joe/Desktop/Jaia.m4a FFmpeg version CVS, Copyright (c) 2000-2004 Fabrice Bellard Mac OSX universal build for ffmpegX configuration: --enable-memalign-hack --enable-mp3lame --enable-gpl --disable-vhook --disable-ffplay --disable-ffserver --enable-a52 --enable-xvid --enable-faac --enable-faad --enable-amr_nb --enable-amr_wb --enable-pthreads --enable-x264 libavutil version: 49.0.0 libavcodec version: 51.9.0 libavformat version: 50.4.0 built on Apr 15 2006 04:58:19, gcc: 4.0.1 (Apple Computer, Inc. build 5250) Input #0, mov,mp4,m4a,3gp,3g2,mj2, from '/Users/joe/Desktop/Jaia.mp4': Duration: 00:09:51.8, start: 0.000000, bitrate: 479 kb/s Stream #0.0(und): Audio: aac, 44100 Hz, stereo Stream #0.1(und), 25.00 fps(r): Video: h264, yuv420p, 480x360 Output #0, mp4, to '/Users/joe/Desktop/Jaia.m4a': Stream #0.0: Audio: aac, 44100 Hz, stereo Stream mapping: Stream #0.0 -> #0.0 Press [q] to stop encoding size= 9274kB time=591.9 bitrate= 128.4kbits/s video:0kB audio:9074kB global headers:0kB muxing overhead 2.201532%
-
-
This is going a bit off-topic, but since we're on a roll...
How can I do the same thing with an FLV? -
One way is to first convert it to MP4 using MPEG Streamclip. (I'm pretty sure this doesn't touch the streams and just re-wraps them in a different container.)
Then, use either of the two methods above (MKVtools or MP4box).
Maybe there's a one-step way to do it? -
Going command line again, I haven't used ffmpeg much, but it should be able to do it. I have had success using mplayer, so you can try that too. Just google mplayer and dumpaudio and you should find plenty of help. You can find mplayer inside a number of of apps, just like you found mp4box. MKVtools has a fairly recent version, but probably the best would be to find the most recent copy of one of the versions of the mplayer gui.
Similar Threads
-
All-in-one Batch demux FLV -> mux mp4?
By gaikokujinkyofusho in forum Video ConversionReplies: 2Last Post: 19th Jan 2011, 23:34 -
Demux and cut mp4 files?
By kewlar in forum EditingReplies: 0Last Post: 30th Sep 2010, 16:51 -
demux mp4 (SOLVED)
By suv32002 in forum Video ConversionReplies: 4Last Post: 14th Apr 2010, 11:46 -
Out-of-sync after mp4 demux
By windranger in forum Video ConversionReplies: 1Last Post: 24th Feb 2010, 17:34 -
demux a .mp4 to elementary streams
By halsboss in forum Video ConversionReplies: 4Last Post: 28th Nov 2009, 16:38