LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   General (https://www.linuxquestions.org/questions/general-10/)
-   -   Stripping audio from a .wmv file (https://www.linuxquestions.org/questions/general-10/stripping-audio-from-a-wmv-file-214342/)

Ikebo 08-06-2004 01:40 PM

Stripping audio from a .wmv file
 
Anyone know of any programs that can remove the audio track from a WMV file?

wapcaplet 08-07-2004 02:21 PM

mplayer can do it. You can simply watch the video without sound by doing:

Code:

mplayer -nosound YourFile.wmv
If you want to strip out the sound and save a new video without it, things get a little trickier; depending on the video codec used, it may or may not be easy. One way I know of:

Code:

mencoder -ovc copy -nosound YourFile.wmv -o VideoOnly.wmv


All times are GMT -5. The time now is 11:33 AM.