From: gn64_jp Date: Tue, 31 Jan 2012 14:05:34 +0000 (+0000) Subject: fix ffmpeg option. X-Git-Url: http://git.osdn.net/view?p=rec10%2Frec10-git.git;a=commitdiff_plain;h=14d26fb2d8ff6a2f8983c4a4071214b3827ba8a2;hp=ce981efe4240288caf1d4f84ee2a1fa6a3c742f7 fix ffmpeg option. git-svn-id: svn+ssh://svn.sourceforge.jp/svnroot/rec10@910 4e526526-5e11-4fc0-8910-f8fd03428081 --- diff --git a/rec10/trunk/src/ts2x264.py b/rec10/trunk/src/ts2x264.py index 8f77cc9..e836b9c 100644 --- a/rec10/trunk/src/ts2x264.py +++ b/rec10/trunk/src/ts2x264.py @@ -343,7 +343,7 @@ def encodeFfmpegSar(pin,pout,size,is24fps,quality,crf,deinterlace=1,usebluray=0, os.environ['LANG']="ja_JP.UTF-8" log_ffmpeg=recdblist.getLogTitle(pin)+".ffmpeg.log" log_x264=recdblist.getLogTitle(pin)+".x264.log" - exe=ffmpeg+u" -y -i \""+pin+"\" -vsync 400 -vcodec rawvideo -pix_fmt yuv420p "+s+fps+" "+filter+" -an -f rawvideo - 2> \""+log_ffmpeg+"\" | " + exe=ffmpeg+u" -y -i \""+pin+"\" -vcodec rawvideo -pix_fmt yuv420p "+s+fps+" "+filter+" -an -f rawvideo - 2> \""+log_ffmpeg+"\" | " exe=exe+getX264Commandline(x264preset, x264sar, x264fps, x264profile, x264tune, pout,"-", x264streamsize, crf=x264crf,interlaced=x264interlaced,bluray=usebluray) exe = "nice -n 19 " + exe+" 2>&1 | "+tee+" \""+log_x264+"\"" txt=""