Video Format


HiTideBlastoise

Still Fresh
Joined
Sep 18, 2011
Messages
12
Hi, I'm trying to format a video for my caanoo, I've tried multiple settings, but none have worked. What's the best format/settings?
 
I use coder of men with following "dirty" script that converts anything it can find in current folder (useful for serials and anime serials)
Code:
#!/bin/bash
for i in *; do j=`echo $i | cut -d . -f 1`; j=$j".avi";echo "$i converts to $j/n" ;mencoder $i -ovc xvid -vf scale=320:240 -oac mp3lame -xvidencopts bitrate=250 -lameopts abr:br=64 -o $j ; done
 
Back
Top