PDA

View Full Version : [SOLVED] How do I remove audio from a .ogv file via the command line?


Rytron
June 20th, 2009, 12:32 PM
Hi.
I can remove audio from an flv file with this command:
ffmpeg -i input.flv -an -vcodec copy output.flv

How do I remove audio from a .ogv file via the command line? I don't mind if ffmpeg of mencoder is used.

Edit: I used VFFF to remove audio from a .ogv file. A command line method would still be appreciated though.

exit3219
November 10th, 2010, 06:48 PM
oggSplit in the oggvideotools package did the trick for me.

GendeDios
November 10th, 2010, 10:49 PM
KMediaGrab

mencoder file.ogv -ovc lavc -lavcopts vcodec=mpeg4:vbitrate=800 -nosound -o file.mpeg

Rytron
November 11th, 2010, 04:20 AM
Awesome. Thank you both exit3219 & GendeDios. :P