-changed LAME to re-encode to 128kbps (from 32) by default when cutting a file.

This commit is contained in:
martin 2011-03-20 20:17:10 -04:00
parent e64e30d6da
commit b20294d7e9
1 changed files with 1 additions and 1 deletions

View File

@ -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')