]> diplodocus.org Git - flac-archive/commitdiff
Switch from --add-id3v2 to --id3v2-only (sadly, lame still adds old id3 tags
authorepg@pretzelnet.org <>
Tue, 24 Jul 2012 21:42:04 +0000 (14:42 -0700)
committerepg@pretzelnet.org <>
Tue, 24 Jul 2012 21:42:04 +0000 (14:42 -0700)
anyway)

flac2mp3 [changed mode: 0755->0644]

old mode 100755 (executable)
new mode 100644 (file)
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))