Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 7 Dec 2014 11:21:08 +1100
From:      andrew clarke <mail@ozzmosis.com>
To:        Polytropon <freebsd@edvax.de>
Cc:        FreeBSD Questions <freebsd-questions@freebsd.org>
Subject:   Re: Dropping audio in ffmpeg conversion
Message-ID:  <20141207002108.GA96985@ozzmosis.com>
In-Reply-To: <20141206234358.0b17f55f.freebsd@edvax.de>
References:  <20141206234358.0b17f55f.freebsd@edvax.de>

next in thread | previous in thread | raw e-mail | index | archive | help
On Sat 2014-12-06 23:43:58 UTC+0100, Polytropon (freebsd@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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20141207002108.GA96985>