-changed LAME to re-encode to 128kbps (from 32) by default when cutting a file.
This commit is contained in:
parent
e64e30d6da
commit
b20294d7e9
|
@ -64,7 +64,7 @@ class CueFile():
|
|||
print command
|
||||
os.system(command + ' > /dev/null 2>&1')
|
||||
|
||||
command = 'lame -b 32 %s %s' % (dst + '.tmp.mp3', dst);
|
||||
command = 'lame -b 128 %s %s' % (dst + '.tmp.mp3', dst);
|
||||
logger.info("command: %s", command)
|
||||
print command
|
||||
os.system(command + ' > /dev/null 2>&1')
|
||||
|
|
Loading…
Reference in New Issue