I have a small video that I would like to convert to black and white. I'm on Ubuntu, and I've avidemux installed. I will be OK if it can be done with some other software if not avidemux; basically, using some open source or free software, not a software for which I've to pay.

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

According to this article, MEncoder that comes with the MPlayer package is cabable of doing this.

sudo apt-get install mplayer libxine-extracodecs
mencoder color-video.avi -o black-white-video.avi -vf hue=0:0 -oac copy -ovc lavc

The manual and encoder guide to MEncoder.

link|improve this answer
Thanks you! For some reason, I couldn't install "libxine-extracodecs". So, when I installed just mplayer, I didn't get the mencoder tool. I installed mencoder separately, and executed the second command above. Worked like a charm! – artknish Aug 18 '09 at 15:21
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.