View Single Post
  #2  
Old 03-10-2010, 12:58 AM
Stream Recorder
 
Posts: n/a
Default

Re: How to convert video files for Creative Zen X-Fi with freeware mencoder(command l


How to convert all FLV files from the current directory and all subdirectories to Creative Zen .AVI files (Linux)

Code:
find ./ -name '*.flv' -type f -exec mencoder {} -o {}.avi -vf scale=320:240 -oac mp3lame -ovc xvid -xvidencopts bitrate=800 \;
Reply With Quote