From: epg@pretzelnet.org <> Date: Tue, 24 Jul 2012 21:42:04 +0000 (-0700) Subject: Switch from --add-id3v2 to --id3v2-only (sadly, lame still adds old id3 tags X-Git-Url: https://diplodocus.org/git/flac-archive/commitdiff_plain/e46e0e46ed198aa804e2e3cd9473eb21c7c70f62?hp=3a451f73d21763436b1cb948800c9b510e854c3a Switch from --add-id3v2 to --id3v2-only (sadly, lame still adds old id3 tags anyway) --- 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))