1 contributor
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
import sys
from tinytag import TinyTag
class Metainfo():
def __init__(self, artist='', album='', title='', track='', length=0):
self.artist = artist
self.album = album
self.title = title
self.track = track
self.length = length
def dict(self):
return {
'artist': self.artist,
'album': self.album,
'title': self.title,
'track': self.track,
'length': self.length
}
def getSongInfo(filepath):
print(filepath, end=": ")
try:
tag = TinyTag.get(filepath)
except LookupError:
return Metainfo()
for attribute in ['artist','album','title','track']:
if getattr(tag, attribute) is None:
print(attribute, end=" ")
print()
if __name__ == "__main__":
for filepath in sys.argv[1:]:
getSongInfo(filepath)