On Wed, 04 Mar 2015 22:11:19 -0600
Emil Payne <ehspa...@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


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
https://lists.debian.org/20150308140415.5220b00a398a15e90501d...@gmail.com

Reply via email to