Hi folks, does anybody know if there is a (fast shell-) program that extracts audio out of a video file? Lets say a MPEG4-Format... Thanks for your attention. Gee... --
Im sure ffmpeg can do this I use easywma on mac to do it which I think is just a GUI onto ffmpeg On 4 Feb 2014 12:21, "Guido Budack" <glaivy at yandex.com> wrote:> Hi folks, > > does anybody know if there is a (fast shell-) program that extracts audio > out of a video file? > Lets say a MPEG4-Format... > > Thanks for your attention. > > Gee... > -- > _______________________________________________ > Icecast mailing list > Icecast at xiph.org > http://lists.xiph.org/mailman/listinfo/icecast >-------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.xiph.org/pipermail/icecast/attachments/20140204/0bc41d42/attachment.htm
On Tue, 4 Feb 2014, Guido Budack wrote:> does anybody know if there is a (fast shell-) program that extracts audio out of a video file? > Lets say a MPEG4-Format...I use avconv from libav (http://libav.org), a fork of ffmpeg. avconv -i <infile> -vn -acodec copy <outfile> You can run 'avconv -i <infile>' to get codec info, so you know what filename to use for the output filename. Simply replace avconv with ffmpeg if you're using ffmpeg. HTH, Geoff.