X-Git-Url: https://diplodocus.org/git/flac-archive/blobdiff_plain/e46e0e46ed198aa804e2e3cd9473eb21c7c70f62..4601d7cc2cd896acc9b645aa3708e1aebc8656f6:/flac2mp3 diff --git a/flac2mp3 b/flac2mp3 old mode 100644 new mode 100755 index 77c586e..1884f61 --- a/flac2mp3 +++ b/flac2mp3 @@ -16,6 +16,10 @@ may be the kind of FLAC file B generates. That is, it contains a cue sheet, one TITLE tag per track listed therein, and ARTIST, ALBUM, and DATE tags. +Note that lame is retarded, and parses B directly itself! So, in order +for it to transcode textual tags, you must specify the encoding in LANG, e.g. +LANG=en_US.utf-8 + =head1 OPTIONS =over 4 @@ -50,14 +54,14 @@ Written by Eric Gillespie . """ -import re, sys, traceback +import os, re, sys, tempfile, traceback from optparse import OptionParser from subprocess import Popen, PIPE import org.diplodocus.jobs from org.diplodocus.util import run_or_die -from flac_archive import flac, taglib +from flac_archive import flac from flac_archive.tags import Tags ################################################################################ @@ -99,13 +103,25 @@ 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 --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)) - if pics != None: - taglib.add_apic_frame_to_mp3(outfile, pics) + pic_options = None + if pics: + (fd, picfn) = tempfile.mkstemp() + f = os.fdopen(fd, 'wb') + f.write(pics[0][7]) + f.close() + pic_options = "--ti '%s'" % picfn + try: + run_or_die(3, "flac %s -cd %s '%s' | lame --id3v2-only --id3v2-latin1 --pad-id3v2-size 0 %s --tt '%s' --ta '%s' --tl '%s' --ty '%s' --tn %d %s %s - '%s'" + % (flac_options, ' '.join(skip_until), fn, + lame_options, title, artist, album, date, track, + pic_options, album_artist_options, quoted_outfile)) + finally: + if pic_options: + try: + os.unlink(picfn) + except: + pass return 0