]>
diplodocus.org Git - flac-archive/blob - rewrite-tags
6 from errno
import EEXIST
8 from flac_archive
.tags
import Tags
10 class SubprocessError(Exception):
11 def __init__(self
, status
, command
=None, stderr
=None):
15 command_msg
= ': ' + ' '.join(command
)
17 msg
= 'exited due to signal %d%s'
19 msg
= 'exit status %d%s'
20 Exception.__init
__(self
, msg
% (abs(status
), command_msg
))
22 self
.command
= command
28 command
= ['metaflac', '--no-utf8-convert', '--export-tags-to=-', fn
]
29 p
= subprocess
.Popen(command
, stdout
=subprocess
.PIPE
,
30 stderr
=subprocess
.STDOUT
)
35 raise SubprocessError(status
, command
=command
, stderr
=p
.stdout
)
39 def rewrite_track_tags(track
, tags
, fn
, tmp
):
40 tmp
.write('\n'.join(tags
.track(track
)) + '\n')
42 command
= ['metaflac', '--no-utf8-convert', '--dont-use-padding',
43 '--remove-all-tags', '--import-tags-from', tmp
.name
, fn
]
44 p
= subprocess
.Popen(command
, stdout
=subprocess
.PIPE
,
45 stderr
=subprocess
.STDOUT
)
46 stdout
, stderr
= p
.communicate()
49 raise SubprocessError(status
, command
=command
, stderr
=stdout
)
51 def do_read(filenames
):
52 # Use this mapping of tag names to sets of tag values to detect global tags.
54 # Build the collated result in this Tags object.
56 # XXX The Tags interface is horrible. It's gotta be almost 10 years since
57 # I wrote it, so not surprising...
60 track_tags
= tags
.get('TRACKNUMBER')
61 # this check belongs in Tags
62 if len(track_tags
) != 1:
63 sys
.stderr
.write('bogus TRACKNUMBER %s: %s\n' % (track_tags
, fn
))
65 track
= int(track_tags
[0])
66 for tag
, values
in tags
._global
.iteritems():
67 # Makes no sense to save TRACKNUMBER in coll_tags.
68 if tag
== 'TRACKNUMBER':
72 all_tags
[tag
].add(value
)
74 all_tags
[tag
] = set([value
])
75 coll_tags
.set(tag
, value
, track
)
76 for tag
, values
in all_tags
.iteritems():
78 # Only one value for this tag, so add it to global tags.
79 coll_tags
.set(tag
, list(values
)[0])
80 # And now remove it from each track tags.
81 for track
, tags
in coll_tags
._tracks
.iteritems():
83 print '\n'.join(coll_tags
.all())
88 tags
.load(open(args
.pop(0)))
89 if len(args
) != len(tags
):
90 sys
.stderr
.write('expected %d flac files, got %d\n'
91 % (len(tags
), len(args
)))
93 artist
= tags
.get_path_safe('ARTIST')
94 album
= tags
.get_path_safe('ALBUM')
100 album_path
= artist
+ '/' + album
104 if e
.errno
!= EEXIST
:
106 for i
, old_fn
in enumerate(args
):
108 fn
= '%s/%s/%s.flac' % (artist
, album
, tags
.make_filename(track
))
110 os
.rename(old_fn
, fn
)
111 tmp
= tempfile
.NamedTemporaryFile(delete
=False)
113 rewrite_track_tags(track
, tags
, fn
, tmp
)
124 if args
[1] == 'read':
125 return do_read(args
[2:])
126 if args
[1] == 'write':
127 return do_write(args
[2:])
133 if __name__
== '__main__':
134 sys
.exit(main(sys
.argv
))