]>
diplodocus.org Git - flac-archive/blob - flac2mp3
5 B<flac2mp3> - transcode FLAC file to MP3 files
9 B<flac2mp3> [B<--lame-options> I<lame-options>] [B<-q>] [B<-v>] I<file> [...]
13 B<flac2mp3> transcodes the FLAC files I<file> to MP3 files. I<file>
14 may be the kind of FLAC file B<fa-flacd> generates. That is, it
15 contains a cue sheet, one TITLE tag per track listed therein, and
16 ARTIST, ALBUM, and DATE tags.
18 Note that lame is retarded, and parses B<LANG> directly itself! So, in order
19 for it to transcode textual tags, you must specify the encoding in LANG, e.g.
26 =item B<--lame-options> I<lame-options>
28 Pass I<lame-options> to B<lame>. This ends up being passed to the
29 shell, so feel free to take advantage of that. You'll almost
30 certainly have to put I<lame-options> in single quotes.
32 =item B<-q> [B<--quiet>]
34 Suppress status information. This option is passed along to B<flac>
37 =item B<-v> [B<--verbose>]
39 Print diagnostic information. This option is passed along to B<flac>
46 Written by Eric Gillespie <epg@pretzelnet.org>.
50 package epg
::flac
::archive
::mp3
;
58 require "$FindBin::Bin/tags.pl";
59 epg
::flac
::archive
::tags-
>import(
68 my $quoted_flac = quote
(shift);
70 my ($album, $artist, $date, $discnumber) = disc_tags
($tags);
72 # TODO resurrect whole-disc FLAC?
73 # Stupid hack: only a single-track file should have the
74 # TRACKNUMBER tag, so use it if set for the first pass through
75 # the loop. At the end of the loop, we'll set $track for the
76 # next run, so this continues to work for multi-track files.
82 my $tracknumber = epg
::flac
::archive
::tags
::one
(TRACKNUMBER
=> $tags);
83 my $title = epg
::flac
::archive
::tags
::one
(TITLE
=> $tags);
84 # TODO restore PARTNUMBER and VERSION next time i need them
86 say('metaflac --export-picture-to=flac2mp3.cover.$$', " $quoted_flac && pic_options=", '"--ti flac2mp3.cover.$$"');
88 # This is an old TODO; what's wrong with --ty ?
89 # TODO: Look at TDOR, TDRL, TDRC for date.
98 '--pad-id3v2-size', 0,
111 #(map { ('--tv', quote("TPE2=$_")) } @{$albumartist}),
112 (map { ('--tv', quote
("TPOS=$_")) } @{$discnumber}),
115 mangle_for_file_name
(
119 (map { sprintf('%02d', $_) } @{$discnumber}),
126 say('unset pic_options');
129 sub read_tags_metaflac
{
131 open(my $fh, '-|', 'metaflac', '--no-utf8-convert', '--export-tags-to=-', $fn) || die("metalfac: $!");
132 my @result = read_tags
($fh);
135 die("metaflac exited $?")
137 die("close(metaflac): $!")
144 my ($tags) = read_tags_metaflac
($fn);
145 flac2mp3
($fn, $tags);
147 say('rm -f flac2mp3.cover.$$');