From: epg <> Date: Thu, 19 Oct 2006 06:10:32 +0000 (+0000) Subject: (flac): UNTESTED: Put disc number at the front of the output file name, X-Git-Url: https://diplodocus.org/git/flac-archive/commitdiff_plain/05ccb9e6302c84c623781de8345dfd3d607ff9c8?hp=c7db93b17a2feae5281e4f92fcfaa883d022cb02 (flac): UNTESTED: Put disc number at the front of the output file name, not the reader (?!). --- diff --git a/fa-flacd b/fa-flacd index 59b09c4..59e9c26 100755 --- a/fa-flacd +++ b/fa-flacd @@ -142,7 +142,7 @@ def flac(dir, artist, album, discnum, tracknum, track_tags, disc_artist, tags): if tracknum == None: outfile = album if discnum != None: - outfile = ''.join([outfile, ' (disc ', discnum, ')']) + outfile = ''.join([discnum, ' ', outfile]) run_flac('wav', 'cue', '/'.join(['..', artist, outfile]), tags) files = ['%s/%s.flac' % (artist, outfile)]