-#! /usr/bin/env python2.4
+#!/usr/bin/python
"""
=head1 NAME
################################################################################
# The child processes
-def flac2mp3(fn, title, artist, album, date, track, skip_until, pics=None):
+def flac2mp3(fn, title, artist, album_artist, album, date,
+ track, skip_until, pics=None):
(title, artist, album) = [(x == None and 'unknown') or x
for x in (title, artist, album)]
if date == None:
track, title)).replace('/', '_')
# Escape any single quotes ' so we can quote this.
- (fn, title, artist,
- album, date) = [x.replace("'", r"'\''")
- for x in (fn, title, artist, album, date)]
+ (fn, title, artist, album_artist,
+ album, date) = [(x or '').replace("'", r"'\''")
+ for x in [fn, title, artist, album_artist, album, date]]
+
+ album_artist_options = ''
+ 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'"
+ 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,
- quoted_outfile))
+ album_artist_options, quoted_outfile))
if pics != None:
taglib.add_apic_frame_to_mp3(outfile, pics)
title = '%s - %s' % (title, part)
artist = tags.get('ARTIST', track)
artist.extend(tags.get('FEATURING', track))
+ album_artist = tags.gets('ALBUMARTIST', track)
jobs.append([fn, title,
', '.join(artist),
- album,
+ album_artist, album,
tags.gets('DATE', track),
track, args[i], pics])
track = i + 2