X-Git-Url: https://diplodocus.org/git/flac-archive/blobdiff_plain/c0973ded46cf1aabd5225501ea02a4f5f8e84a5c..050e4e9a8ad2e021c40ee33a0af475a614672482:/flac2mp3 diff --git a/flac2mp3 b/flac2mp3 index 2233dd9..b7a5a21 100755 --- 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,21 +54,20 @@ 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.tags import Tags ################################################################################ # The child processes -def flac2mp3(fn, title, artist, album_artist, album, date, - track, skip_until, pics=None): +def flac2mp3(fn, title, artist, album_artist, album, discnum, date, + track, skip_until): (title, artist, album) = [(x == None and 'unknown') or x for x in (title, artist, album)] if date == None: @@ -85,9 +88,6 @@ def flac2mp3(fn, title, artist, album_artist, album, date, verbose and tmp.append('--verbose') lame_options = ' '.join(tmp) - outfile = ('%s (%s) %02d %s.mp3' % (artist, album, - track, title)).replace('/', '_') - # Escape any single quotes ' so we can quote this. (fn, title, artist, album_artist, album, date) = [(x or '').replace("'", r"'\''") @@ -97,16 +97,46 @@ def flac2mp3(fn, title, artist, album_artist, album, date, if album_artist: album_artist_options = "--tv 'TPE2=%s'" % album_artist - 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'" - % (flac_options, ' '.join(skip_until), fn, - lame_options, title, artist, album, date, track, - album_artist_options, quoted_outfile)) + outfile_album = album + discnum_options = '' + if discnum != None: + outfile_album = '%s (disc %s)' % (album, discnum) + discnum_options = "--tv 'TPOS=%d'" % int(discnum) - if pics != None: - taglib.add_apic_frame_to_mp3(outfile, pics) + quoted_outfile = ('%s (%s) %02d %s.mp3' % (artist, outfile_album, + track, title)).replace('/', '_') + # HACK! :( + if check_missing: + return quoted_outfile.replace(r"'\''", "'") + + pic_options = '' + (fd, picfn) = tempfile.mkstemp() + os.close(fd) + p = Popen(['metaflac', '--export-picture-to', picfn, fn], stderr=PIPE) + status = p.wait() + stderr = ''.join(p.stderr) + # Hacky check for flac with no album art + if 'no PICTURE block' in stderr: + # That's fine, just no picture. + pass + else: + if status != 0: + sys.stderr.write('metaflac exited %d: %s\n' % (status, stderr)) + return + pic_options = "--ti '%s'" % picfn + os.system('md5sum ' + picfn) + try: + # TODO: Look at TDOR, TDRL, TDRC for date. + 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 - '%s'" + % (flac_options, ' '.join(skip_until), fn, + lame_options, title, artist, album, date, track, + pic_options, album_artist_options, + discnum_options, quoted_outfile)) + finally: + try: + os.unlink(picfn) + except: + pass return 0 @@ -119,7 +149,8 @@ def tformat(m, s, c): def get_decode_args(fn): l = [] - p = Popen(['metaflac', '--export-cuesheet-to=-', fn], stdout=PIPE) + p = Popen(['metaflac', '--no-utf8-convert', '--export-cuesheet-to=-', fn], + stdout=PIPE) for line in (x.rstrip() for x in p.stdout): m = re.search(r'INDEX 01 (\d\d):(\d\d):(\d\d)$', line) if m != None: @@ -159,7 +190,8 @@ def get_tags(fn): tags = Tags() - p = Popen(['metaflac', '--export-tags-to=-', fn], stdout=PIPE) + p = Popen(['metaflac', '--no-utf8-convert', '--export-tags-to=-', fn], + stdout=PIPE) tags.load(p.stdout) # XXX dataloss! check status @@ -177,6 +209,8 @@ def main(argv): parser.add_option('--lame-options') parser.add_option('-q', '--quiet', action='store_true', default=False) parser.add_option('-v', '--verbose', action='store_true', default=False) + parser.add_option('--check-missing-files', action='store_true', + default=False) except: traceback.print_exc() return 2 @@ -193,6 +227,8 @@ def main(argv): separator = ' ' try: global debug, flac_options, lame_options, quiet, verbose + global check_missing + check_missing = options.check_missing_files debug = options.debug lame_options = options.lame_options quiet = options.quiet @@ -208,10 +244,6 @@ def main(argv): discnum = tags.gets('DISCNUMBER') track = tags.gets('TRACKNUMBER') - # lame doesn't seem to support disc number. - if discnum != None: - album = '%s (disc %s)' % (album, discnum) - # Stupid hack: only a single-track file should have the # TRACKNUMBER tag, so use it if set for the first pass through # the loop. At the end of the loop, we'll set $track for the @@ -221,21 +253,32 @@ def main(argv): else: track = int(track) - pics = flac.get_pictures(fn) - for i in range(len(tags)): title = tags.gets('TITLE', track, separator) part = tags.gets('PART', track) if part != None: title = '%s - %s' % (title, part) + version = tags.gets('VERSION', track) + if version != None: + title = '%s (%s)' % (title, version) artist = tags.get('ARTIST', track) artist.extend(tags.get('FEATURING', track)) album_artist = tags.gets('ALBUMARTIST', track) - jobs.append([fn, title, + if check_missing: + mp3 = flac2mp3(fn, title, + ', '.join(artist), + album_artist, album, discnum, + tags.gets('DATE', track), + track, args[i]) + if not os.path.exists(mp3): + print fn + break + continue + jobs.append((fn, title, ', '.join(artist), - album_artist, album, + album_artist, album, discnum, tags.gets('DATE', track), - track, args[i], pics]) + track, args[i])) track = i + 2 except Exception, error: sys.stderr.write(getattr(error, 'msg', ''))