Changeset 351

Show
Ignore:
Timestamp:
09/10/08 23:59:42 (4 months ago)
Author:
andy
Message:

New MEncoder command line, which has higher bitrate, sync option, and in practice seems to work better with WMV to FLV conversion
Also, add in '.ogg' files to be converted to FLV

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • indytube/branches/plumi-0.2.1/indytube.conf

    r190 r351  
    11[encoder] 
    22BE_HOW_NICE=18 
    3 CONVERT_THESE=['.avi','.qt','.mov','.mpeg','.mp4','.mpg','.asf','.wmv','.3gp'] 
     3CONVERT_THESE=['.avi','.qt','.mov','.mpeg','.mp4','.mpg','.asf','.wmv','.3gp','.ogg'] 
    44DO_ENCODING=True 
    55NUMBER_OF_PARALLEL_ENCODERS=1 
     
    1010[mencoder] 
    1111MENCODER_LOCATION=/usr/bin/mencoder 
    12 MENCODER_OPTIONS=-really-quiet -of lavf -lavfopts i_certify_that_my_video_stream_does_not_use_b_frames -oac mp3lame -lameopts abr:br=56 -ovc lavc -lavcopts vcodec=flv:keyint=50:vbitrate=150:mbd=2:mv0:trell:v4mv:cbp:last_pred=3 -vf scale=320:240 -srate 22050 
     12 
     13# for older versions of MEncoder. 
     14#MENCODER_OPTIONS=-really-quiet -of lavf -lavfopts i_certify_that_my_video_stream_does_not_use_b_frames -oac mp3lame -lameopts abr:br=56 -ovc lavc -lavcopts vcodec=flv:keyint=50:vbitrate=150:mbd=2:mv0:trell:v4mv:cbp:last_pred=3 -vf scale=320:240 -srate 22050 
     15 
     16# for newer versions of MEncoder, we dont need the "lavfopts" line above, plus we add in a higher bitrate, and a sync option 
     17MENCODER_OPTIONS=-really-quiet -of lavf -oac mp3lame -lameopts abr:br=64 -ovc lavc -lavcopts vcodec=flv:keyint=25:vbitrate=260:mbd=2:mv0:trell:v4mv:cbp:last_pred=3 -vf harddup,expand=:::::4/3,scale=320:240  -srate 22050 -ofps 25 -mc 0/10 
    1318 
    1419[ffmpeg2theora]