From: James Bunton Date: Fri, 17 Sep 2010 10:01:04 +0000 (+1000) Subject: Tweaks X-Git-Url: https://code.delx.au/transcoding/commitdiff_plain/8fc828ef786c5b6cc6eb2ad3a00fa1274877eaff Tweaks --- diff --git a/encode.py b/encode.py index a46a642..f0f30d3 100755 --- a/encode.py +++ b/encode.py @@ -366,15 +366,15 @@ profiles = { "x264/lame" : Profile( commands=[MPlayer, X264, Lame, Wait, MKVMerge], - x264opts=["--preset", "veryslow", "--crf", "19"], - lameopts=["--preset", "extreme"], + x264opts=["--preset", "veryslow", "--crf", "20"], + lameopts=["--preset", "medium"], ), "x264/copyac3" : Profile( commands=[MPlayer, X264, SwallowAudio, Wait, MencoderCopyAC3, MKVMerge], - x264opts=["--preset", "veryslow", "--crf", "19"], - lameopts=["--preset", "extreme"], + x264opts=["--preset", "veryslow", "--crf", "20"], + lameopts=["--preset", "medium"], ), "xvid/lame" : @@ -389,7 +389,7 @@ profiles = { "apple-quicktime" : Profile( commands=[MPlayer, X264, Faac, Wait, MP4Box], - x264opts=["--crf", "19", "--bframes", "1"], + x264opts=["--crf", "20", "--bframes", "1"], faacopts=["-q", "100", "--mpeg-vers", "4"], ), @@ -405,8 +405,8 @@ profiles = { } mappings = { - "x264", "x264/lame", - "xvid", "xvid/lame", + "x264": "x264/lame", + "xvid": "xvid/lame", } for x, y in mappings.iteritems(): profiles[x] = profiles[y]