I am trying to encode recorded shows into H.264 files. In my config.xml file, I am trying this code...
Are there any errors in it or ways to improve it more?
My goals are to have a small file size with great video quality. XviD and DivX leave blocks in videos and WMV has color shifts in it especially on skin tones.
This looks very promising...
http://flowplayer.org/forum/7/12671
Code:
<Conversion name="H.264" cmd="-y -i {SOURCE_FILE} -ab 128k -ac 2 -acodec mp3 -ar 44100 -b 1000k -bf 3 -b_strategy 1 -cmp +chroma -coder 1 -crf 22 -deinterlace -f mp4 -g 250 -i_qfactor 0.71 -keyint_min 25 -me full -me_range 16 -partitions +parti4x4+partp8x8+partb8x8 -qmin 10 -qmax 51 -qdiff 4 -refs 5 -sc_threshold 40 -subq 5 -threads 2 -vcodec h264 -vtag H264 {DEST_FILE}" targetExtension=".mp4" />
Are there any errors in it or ways to improve it more?
My goals are to have a small file size with great video quality. XviD and DivX leave blocks in videos and WMV has color shifts in it especially on skin tones.
This looks very promising...
http://flowplayer.org/forum/7/12671