]> diplodocus.org Git - flac-archive/blobdiff - flac2mp3
todo
[flac-archive] / flac2mp3
index 24e4a48f64b980349bed23cfc0ffdf8b77bbdfbb..b7a5a213096ea07d901aeaf5bff0f4e5f4af0ebf 100755 (executable)
--- a/flac2mp3
+++ b/flac2mp3
@@ -61,14 +61,13 @@ from subprocess import Popen, PIPE
 import org.diplodocus.jobs
 from org.diplodocus.util import run_or_die
 
-from flac_archive import flac
 from flac_archive.tags import Tags
 
 ################################################################################
 # The child processes
 
 def flac2mp3(fn, title, artist, album_artist, album, discnum, date,
-             track, skip_until, pics=None):
+             track, skip_until):
     (title, artist, album) = [(x == None and 'unknown') or x
                               for x in (title, artist, album)]
     if date == None:
@@ -111,24 +110,33 @@ def flac2mp3(fn, title, artist, album_artist, album, discnum, date,
         return quoted_outfile.replace(r"'\''", "'")
 
     pic_options = ''
-    if pics:
-        (fd, picfn) = tempfile.mkstemp()
-        f = os.fdopen(fd, 'wb')
-        f.write(pics[0][7])
-        f.close()
+    (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:
-        if pic_options:
-            try:
-                os.unlink(picfn)
-            except:
-                pass
+        try:
+            os.unlink(picfn)
+        except:
+            pass
 
     return 0
 
@@ -245,8 +253,6 @@ 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)
@@ -263,7 +269,7 @@ def main(argv):
                                  ', '.join(artist),
                                  album_artist, album, discnum,
                                  tags.gets('DATE', track),
-                                 track, args[i], pics)
+                                 track, args[i])
                         if not os.path.exists(mp3):
                             print fn
                             break
@@ -272,7 +278,7 @@ def main(argv):
                                  ', '.join(artist),
                                  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', ''))