[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Re: Removing sound from mvi files



On Wed, 04 Mar 2015 22:11:19 -0600
Emil Payne <ehspayne@yahoo.com> wrote:

> Is there a simple way to remove the audio track from MVI files?
> MVI is the format my camera produces and I want to upload to YouTube 
> without the background sound.

I use avconv to do the reverse - strip video from YouTube and retain
just the audio:

avconv -i original_file -acodec copy -vn output_filename

I suppose you'd just switch the 'a' and 'v', so something like
(untested):

avconv -i original_file -vcodec copy -an output_filename

'man avconv' for explanation.

> Or can I over write the audio track with a mp3 file?

The above is better.

Celejar


Reply to: