X-Git-Url: https://code.delx.au/transcoding/blobdiff_plain/c5c7aaa1cbac5a481a2d2888b2479971bab2c4db..8fc828ef786c5b6cc6eb2ad3a00fa1274877eaff:/encode.py 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]