Apr
26
2009
posting a flash video in wordpress, cont’d
after nearly three months, another MOV-to-FLV convert appears. I tried to re-use the commands I listed in previous post on video conversion.
I discovered that the -acodec option did not work and I had to update it. Then, I also added the bitrate option which enhances the quality of the final output.
The current version is as follows.
mencoder -of avi -o output.temp.avi -srate 8000 -ovc lavc -lavcopts vcodec=mpeg4:mbd=2:mv0:trell:v4mv:cbp:last_pred=3:predia=2:dia=2:vmax_b_frames=2:vb_strategy=1:precmp=2:cmp=2:subcmp=2:preme=2:qns=2:vbitrate=2000 -oac mp3lame
ffmpeg -i output.temp.avi -vcodec flv -s 400x320 -b 2000k -acodec mp3 -r 24 -y -ac 1 -ar 22050