]>
diplodocus.org Git - flac-archive/blob - flac2mp3
6 B<flac2mp3> - transcode FLAC file to MP3 files
10 B<flac2mp3> [B<--lame-options> I<lame-options>] [B<-j> I<jobs>] [B<-q>] [B<-v>] I<file> [...]
14 B<flac2mp3> transcodes the FLAC files I<file> to MP3 files. I<file>
15 may be the kind of FLAC file B<fa-flacd> generates. That is, it
16 contains a cue sheet, one TITLE tag per track listed therein, and
17 ARTIST, ALBUM, and DATE tags.
19 Note that lame is retarded, and parses B<LANG> directly itself! So, in order
20 for it to transcode textual tags, you must specify the encoding in LANG, e.g.
27 =item B<--lame-options> I<lame-options>
29 Pass I<lame-options> to B<lame>. This ends up being passed to the
30 shell, so feel free to take advantage of that. You'll almost
31 certainly have to put I<lame-options> in single quotes.
33 =item B<-j> [B<--jobs>] I<jobs>
35 Run up to I<jobs> jobs instead of the default 1.
37 =item B<-q> [B<--quiet>]
39 Suppress status information. This option is passed along to B<flac>
42 =item B<-v> [B<--verbose>]
44 Print diagnostic information. This option is passed along to B<flac>
51 Written by Eric Gillespie <epg@pretzelnet.org>.
57 import os
, re
, sys
, tempfile
, traceback
58 from optparse
import OptionParser
59 from subprocess
import Popen
, PIPE
61 import org
.diplodocus
.jobs
62 from org
.diplodocus
.util
import run_or_die
64 from flac_archive
import flac
65 from flac_archive
.tags
import Tags
67 ################################################################################
70 def flac2mp3(fn
, title
, artist
, album_artist
, album
, date
,
71 track
, skip_until
, pics
=None):
72 (title
, artist
, album
) = [(x
== None and 'unknown') or x
73 for x
in (title
, artist
, album
)]
78 flac_options
= '--silent'
84 if lame_options
!= None:
85 tmp
.append(lame_options
)
87 tmp
.append('--preset standard');
88 quiet
and tmp
.append('--quiet')
89 verbose
and tmp
.append('--verbose')
90 lame_options
= ' '.join(tmp
)
92 outfile
= ('%s (%s) %02d %s.mp3' % (artist
, album
,
93 track
, title
)).replace('/', '_')
95 # Escape any single quotes ' so we can quote this.
96 (fn
, title
, artist
, album_artist
,
97 album
, date
) = [(x
or '').replace("'", r
"'\''")
98 for x
in [fn
, title
, artist
, album_artist
, album
, date
]]
100 album_artist_options
= ''
102 album_artist_options
= "--tv 'TPE2=%s'" % album_artist
104 quoted_outfile
= ('%s (%s) %02d %s.mp3' % (artist
, album
,
105 track
, title
)).replace('/', '_')
109 (fd
, picfn
) = tempfile
.mkstemp()
110 f
= os
.fdopen(fd
, 'wb')
114 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 --ti '%s' %s - '%s'"
115 % (flac_options
, ' '.join(skip_until
), fn
,
116 lame_options
, title
, artist
, album
, date
, track
,
117 picfn
, album_artist_options
, quoted_outfile
))
127 ################################################################################
130 def tformat(m
, s
, c
):
131 return '%02d:%02d.%02d' % (m
, s
, c
)
133 def get_decode_args(fn
):
136 p
= Popen(['metaflac', '--export-cuesheet-to=-', fn
], stdout
=PIPE
)
137 for line
in (x
.rstrip() for x
in p
.stdout
):
138 m
= re
.search(r
'INDEX 01 (\d\d):(\d\d):(\d\d)$', line
)
140 l
.append(map(int, m
.groups()))
142 # XXX dataloss! check status
145 for i
in xrange(len(l
)):
146 arg
= ['--skip=' + tformat(*l
[i
])]
154 arg
.append('--until=' + tformat(next
[0] - 1, 59, 74))
156 arg
.append('--until=' + tformat(next
[0], next
[1] - 1,
159 arg
.append('--until=' + tformat(next
[0], next
[1],
164 # If no cue sheet, stick a dummy in here.
171 """Return the ARTIST, ALBUM, and DATE tags followed by the TITLE tags
176 p
= Popen(['metaflac', '--export-tags-to=-', fn
], stdout
=PIPE
)
179 # XXX dataloss! check status
185 # Control the exit code for any uncaught exceptions.
187 parser
= OptionParser()
188 parser
.disable_interspersed_args()
189 parser
.add_option('-X', '--debug', action
='store_true', default
=False)
190 parser
.add_option('-j', '--jobs', type='int', default
=1)
191 parser
.add_option('--lame-options')
192 parser
.add_option('-q', '--quiet', action
='store_true', default
=False)
193 parser
.add_option('-v', '--verbose', action
='store_true', default
=False)
195 traceback
.print_exc()
199 # Raises SystemExit on invalid options in argv.
200 (options
, args
) = parser
.parse_args(argv
[1:])
201 except Exception, error
:
202 if isinstance(error
, SystemExit):
204 traceback
.print_exc()
209 global debug
, flac_options
, lame_options
, quiet
, verbose
210 debug
= options
.debug
211 lame_options
= options
.lame_options
212 quiet
= options
.quiet
213 verbose
= options
.verbose
218 args
= get_decode_args(fn
)
221 album
= tags
.gets('ALBUM', separator
=separator
)
222 discnum
= tags
.gets('DISCNUMBER')
223 track
= tags
.gets('TRACKNUMBER')
225 # lame doesn't seem to support disc number.
227 album
= '%s (disc %s)' % (album
, discnum
)
229 # Stupid hack: only a single-track file should have the
230 # TRACKNUMBER tag, so use it if set for the first pass through
231 # the loop. At the end of the loop, we'll set $track for the
232 # next run, so this continues to work for multi-track files.
238 pics
= flac
.get_pictures(fn
)
240 for i
in range(len(tags
)):
241 title
= tags
.gets('TITLE', track
, separator
)
242 part
= tags
.gets('PART', track
)
244 title
= '%s - %s' % (title
, part
)
245 artist
= tags
.get('ARTIST', track
)
246 artist
.extend(tags
.get('FEATURING', track
))
247 album_artist
= tags
.gets('ALBUMARTIST', track
)
248 jobs
.append([fn
, title
,
251 tags
.gets('DATE', track
),
252 track
, args
[i
], pics
])
254 except Exception, error
:
255 sys
.stderr
.write(getattr(error
, 'msg', ''))
256 traceback
.print_exc()
257 sys
.stderr
.write('Continuing...\n')
264 return lambda: flac2mp3(*job
)
265 org
.diplodocus
.jobs
.run(maxjobs
=options
.jobs
, debug
=debug
, get_job
=getjob
)
266 except Exception, error
:
267 if isinstance(error
, SystemExit):
269 # check all print_exc and format_exc in fa-flacd.py; i think
270 # for some i don't do this msg print check
271 sys
.stderr
.write(getattr(error
, 'msg', ''))
272 traceback
.print_exc()
277 if __name__
== '__main__':
278 sys
.exit(main(sys
.argv
))