gists/unsync.py

170 lines
4.4 KiB
Python
Raw Normal View History

2014-04-26 14:34:13 -07:00
#!/bin/python2
# only using python2 because mutagen
from __future__ import print_function
import os
import os.path
import sys
2014-04-27 15:34:09 -07:00
import shutil
2014-04-28 19:31:24 -07:00
import tempfile
2014-05-25 16:34:58 -07:00
from zlib import crc32
2014-04-27 15:34:09 -07:00
2014-04-27 12:03:52 -07:00
import mutaext
2014-04-27 15:34:09 -07:00
import convert
2014-04-30 17:04:02 -07:00
from mutaext import SyncFile
2014-04-26 14:34:13 -07:00
2014-04-29 03:32:23 -07:00
# BUG: doesn't work with my .m4a files?
goodexts = ('.mp3', '.m4a', '.flac', '.ogg')
matchtags = ['artist', 'album', 'title']
2014-05-03 19:33:38 -07:00
alltags = [\
2014-04-27 13:47:08 -07:00
'albumartist', 'composer', 'comment' \
'tracknumber', 'discnumber', \
'genre', 'date', \
]
2014-05-03 19:33:38 -07:00
alltags.extend(mutaext.replaygain_tags)
alltags.extend(mutaext.extra_tags)
2014-04-29 03:32:23 -07:00
alltags.extend(matchtags)
2014-04-27 06:46:24 -07:00
2014-04-29 03:32:23 -07:00
lament = lambda *args, **kwargs: print(*args, file=sys.stderr, **kwargs)
walkfiles = lambda w: (os.path.join(r, f) for r, _, fs in w for f in fs)
extof = lambda p: os.path.splitext(p)[1].lower()
filterext = lambda ps, es: (p for p in ps if extof(p) in es)
2014-05-03 19:33:38 -07:00
ansty = lambda u: str(u.decode('ascii', errors='replace').replace(u'\ufffd', '?'))
2014-04-27 06:46:24 -07:00
2014-04-26 14:34:13 -07:00
def shouldsync(md):
2014-04-30 17:04:02 -07:00
rating = md.get('rating', u'')
2014-04-28 19:31:24 -07:00
sync = md.get('sync', u'')
2014-04-27 13:47:08 -07:00
try:
2014-04-30 17:04:02 -07:00
rating = int(rating)
except ValueError:
2014-04-27 13:47:08 -07:00
pass
2014-04-27 07:05:51 -07:00
if sync:
2014-04-30 17:04:02 -07:00
sync = sync.lower()
2014-04-26 14:34:13 -07:00
2014-04-29 08:52:55 -07:00
return sync == 'yes' or type(rating) == int and rating >= 3 and sync != 'no' and sync != 'space'
2014-04-26 14:34:13 -07:00
2014-04-27 09:36:14 -07:00
def fixmetadata(md):
2014-04-29 03:32:23 -07:00
md['artist'] = md.get('artist', u"Unknown Artist")
md['album'] = md.get('album', u"Unknown Album")
2014-04-27 09:36:14 -07:00
if 'title' not in md:
fn = os.path.basename(md.path)
fn = os.path.splitext(fn)[0]
2014-04-29 03:32:23 -07:00
md['title'] = unicode(fn)
2014-04-27 09:36:14 -07:00
2014-04-26 14:34:13 -07:00
def findmatching(haystack, needle):
2014-05-03 19:33:38 -07:00
matchme = [needle[t].lower() for t in matchtags]
ismatch = lambda hay: [hay[t].lower() for t in matchtags] == matchme
2014-04-29 03:32:23 -07:00
for match in (hay for hay in haystack if ismatch(hay)):
if match.seen:
2014-04-30 17:04:02 -07:00
# TODO: check other tags too?
2014-05-03 19:33:38 -07:00
lament("Duplicate")
return None
match.seen = needle.path
2014-04-29 03:32:23 -07:00
return match
2014-04-26 14:34:13 -07:00
2014-04-27 12:03:52 -07:00
def updatemetadata(mdold, mdnew):
modified = False
2014-05-03 19:33:38 -07:00
for tag in alltags:
2014-04-30 17:04:02 -07:00
if tag in mdnew:
2014-05-03 19:33:38 -07:00
if tag not in mdold or mdnew[tag] != mdold[tag]:
2014-04-27 12:03:52 -07:00
mdold[tag] = mdnew[tag]
modified = True
elif tag in mdold:
del mdold[tag]
modified = True
return modified
2014-04-27 15:34:09 -07:00
def makefilename(md):
2014-04-30 17:04:02 -07:00
title = md['title']
artist = md['artist']
album = md['album']
2014-05-25 16:34:58 -07:00
fn = "%(artist)s - %(album)s - %(title)s" % locals()
crc = crc32(fn.encode('utf-8')) & 0xFFFFFFFF
# FAT is a pain to deal with so just use nondescript filenames
fn = '{:08X}.ogg'.format(crc)
return fn
2014-04-27 15:34:09 -07:00
2014-04-26 14:34:13 -07:00
def run(args):
if not len(args) in (2, 3):
2014-04-29 03:32:23 -07:00
lament("I need a path or two!")
2014-04-27 07:05:51 -07:00
return 1
2014-04-26 14:34:13 -07:00
inonly = len(args) == 2
tosync = []
indir = args[1]
2014-05-03 19:33:38 -07:00
_paths = lambda dir: filterext(walkfiles(os.walk(dir)), goodexts)
paths = lambda dir: _paths(unicode(dir).encode('utf-8'))
2014-04-26 14:34:13 -07:00
2014-04-27 06:46:24 -07:00
for p in paths(indir):
2014-04-30 17:04:02 -07:00
md = SyncFile(p)
2014-04-27 06:46:24 -07:00
if shouldsync(md):
2014-04-27 09:36:14 -07:00
if inonly:
print(p)
else:
fixmetadata(md)
tosync.append(md)
if inonly:
return 0
2014-04-27 15:34:09 -07:00
2014-04-29 03:32:23 -07:00
lament("Matching...")
2014-04-26 14:34:13 -07:00
outdir = args[2]
2014-04-27 06:46:24 -07:00
for p in paths(outdir):
2014-04-30 17:04:02 -07:00
md = SyncFile(p)
2014-04-27 06:46:24 -07:00
match = findmatching(tosync, md)
2014-04-30 17:04:02 -07:00
if match == None:
2014-04-27 15:34:09 -07:00
print("DEL", p)
os.remove(p)
2014-04-29 03:32:23 -07:00
elif updatemetadata(md, match):
print("UPD", p)
2014-04-30 17:04:02 -07:00
md.md.save()
2014-04-27 09:36:14 -07:00
for md in tosync:
2014-05-03 19:33:38 -07:00
fn = makefilename(md)
fout = os.path.join(outdir, fn)
2014-04-28 19:31:24 -07:00
if md.seen:
2014-05-03 19:33:38 -07:00
try:
_from = md.seen
2014-05-25 16:34:58 -07:00
_to = fout
2014-05-03 19:33:38 -07:00
if type(_from) != type(_to):
raise TypeError
if _from != _to:
print("MOV", _from)
2014-05-25 16:34:58 -07:00
os.rename(_from, _to)
2014-05-03 19:33:38 -07:00
continue
except:
lament(type(_from), type(_to))
lament("_from:", [_from])
lament("_to:", [_to])
raise
2014-04-28 19:31:24 -07:00
print("ADD", md.path)
_, ftemp = tempfile.mkstemp()
try:
convert.ogg(md.path, ftemp)
2014-04-30 17:04:02 -07:00
mdnew = SyncFile(ftemp)
2014-04-27 15:34:09 -07:00
for tag in alltags:
if tag in md:
mdnew[tag] = md[tag]
2014-04-30 17:04:02 -07:00
mdnew.md.save()
2014-04-28 19:31:24 -07:00
shutil.copy2(ftemp, fout)
finally:
os.remove(ftemp)
2014-04-26 14:34:13 -07:00
2014-04-27 07:05:51 -07:00
return 0
ret = 0
2014-04-26 14:34:13 -07:00
try:
2014-04-27 07:05:51 -07:00
ret = run(sys.argv)
2014-04-26 14:34:13 -07:00
except KeyboardInterrupt:
sys.exit(1)
2014-04-27 07:05:51 -07:00
sys.exit(ret)