From: James Bunton Date: Sun, 19 Jun 2011 08:33:57 +0000 (+1000) Subject: Added fast x264 profile X-Git-Url: https://code.delx.au/transcoding/commitdiff_plain/8dd9b363f8efad41d2a533220d3928d85b0104b5 Added fast x264 profile --- diff --git a/encode.py b/encode.py index d265dc5..e92d89d 100755 --- a/encode.py +++ b/encode.py @@ -369,6 +369,14 @@ profiles = { x264opts=["--preset", "veryslow", "--crf", "20"], ), + "x264/lame/fast" : + Profile( + commands=[MPlayer, X264, Lame, Wait, MKVMerge], + mplayeropts=[], + x264opts=["--preset", "fast", "--crf", "23"], + lameopts=["--preset", "medium"], + ), + "xvid/lame" : Profile( commands=[Mencoder],