X-Git-Url: https://diplodocus.org/git/flac-archive/blobdiff_plain/3a451f73d21763436b1cb948800c9b510e854c3a..e46e0e46ed198aa804e2e3cd9473eb21c7c70f62:/flac2mp3 diff --git a/flac2mp3 b/flac2mp3 old mode 100755 new mode 100644 index 2233dd9..77c586e --- a/flac2mp3 +++ b/flac2mp3 @@ -99,8 +99,7 @@ def flac2mp3(fn, title, artist, album_artist, album, date, quoted_outfile = ('%s (%s) %02d %s.mp3' % (artist, album, track, title)).replace('/', '_') - - run_or_die(3, "flac %s -cd %s '%s' | lame --add-id3v2 %s --tt '%s' --ta '%s' --tl '%s' --ty '%s' --tn %d %s - '%s'" + run_or_die(3, "flac %s -cd %s '%s' | lame --id3v2-only %s --tt '%s' --ta '%s' --tl '%s' --ty '%s' --tn %d %s - '%s'" % (flac_options, ' '.join(skip_until), fn, lame_options, title, artist, album, date, track, album_artist_options, quoted_outfile))