diff --git a/ChangeLog b/ChangeLog index 850a629..c57ca36 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2012-11-23 Thomas Vander Stichele + + * morituri/common/encode.py: + Use vbr-quality instead of quality for vbr. Fixes #94. + 2012-11-23 Thomas Vander Stichele * morituri/image/cue.py: diff --git a/morituri/common/encode.py b/morituri/common/encode.py index 453f54c..dbe80c7 100644 --- a/morituri/common/encode.py +++ b/morituri/common/encode.py @@ -108,8 +108,9 @@ class MP3Profile(Profile): class MP3VBRProfile(Profile): name = 'mp3vbr' extension = 'mp3' - pipeline = 'lame name=tagger quality=0 vbr=new vbr-mean-bitrate=192 ! ' \ - 'id3v2mux' + pipeline = 'lame name=tagger ' \ + 'vbr-quality=0 vbr=new vbr-mean-bitrate=192 ! ' \ + 'id3v2mux' lossless = False