Ubuntu – How drop an audio stream using avconv

avconv

How do I Drop audio from a MKV with DTS encoding? I am using this command avconv -i Movie.mkv -c:v copy movie.mp4.

I know the command would include the codec command but I don't know how to use it.

Best Answer

Looks like the option -an should do the trick. Just ran a file, confirmed, new file had no sound.

-an (output)
   Disable audio recording.

from http://manpages.ubuntu.com/manpages/precise/man1/avconv.1.html