Dropping audio in ffmpeg conversion
andrew clarke
mail at ozzmosis.com
Sun Dec 7 00:21:18 UTC 2014
On Sat 2014-12-06 23:43:58 UTC+0100, Polytropon (freebsd at edvax.de) wrote:
> I'm searching for a convenient way to drop audio from
> an AVI file (video and audio) upon conversion to MP4.
> My tool of choice is ffmpeg, which works perfectly fine
> with the default options:
>
> % ffmpeg -i in.avi out.mp4
ffmpeg -i in.avi -an out.mp4
Order of the arguments is important. This won't work as expected:
ffmpeg -an -i in.avi out.mp4
More information about the freebsd-questions
mailing list