-changed LAME to re-encode to 128kbps (from 32) by default when cutting a file.
This commit is contained in:
parent
e64e30d6da
commit
b20294d7e9
1 changed files with 1 additions and 1 deletions
|
@ -64,7 +64,7 @@ class CueFile():
|
||||||
print command
|
print command
|
||||||
os.system(command + ' > /dev/null 2>&1')
|
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)
|
logger.info("command: %s", command)
|
||||||
print command
|
print command
|
||||||
os.system(command + ' > /dev/null 2>&1')
|
os.system(command + ' > /dev/null 2>&1')
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue