-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplaylist-gen.py
executable file
·481 lines (369 loc) · 13.1 KB
/
playlist-gen.py
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
#!/usr/bin/env python2
#-*- coding:utf-8 -*-
"""Generate an M3U playlist (video or audio) in the given directory.
Searches recursively for multimedia files in and below the current directory.
Information from ID3 tags will be extracted for audio files with FFmpeg
available.
"""
#---------
# IMPORT
#---------
import argparse
import errno
import logging
import mimetypes
import os
import re
import subprocess
import sys
import urllib
from os.path import (basename, exists, isdir, isfile, join, split as pathsplit,
splitext)
#---------
# DEFINE
#---------
__author__ = "Xian Jacobs <[email protected]>"
__date__ = "24.11.2013"
__version__ = "0.1"
options = [
{
"options": ["directory"],
"help" :
"Directory to search recursively for multimedia "
"files."
},
{
"options": ["-p", "--play"],
"action" : "store_true",
"help" :
"Open the playlist located in the output "
"directory."
},
{
"options": ["-r", "--relative"],
"action" : "store_true",
"help" :
"Generate the playlist with local pathnames "
"relative to the M3U file location."
},
{
"options": ["-s", "--simulate"],
"action" : "store_true",
"help" :
"Dry run, don't write the playlist to a file."
},
{
"options": ["-v", "--verbose"],
"action" : "store_true",
"help" :
"Print the files that would be used to generate "
"the playlist."
},
{
"options": ["-d", "--output-directory"],
"action" : "store",
"help" : "Specify the output directory."
},
{
"options": ["-f", "--output-filename"],
"action" : "store",
"help" : "Specify the output file name."
}
]
MARKER_FORMAT = "#EXTM3U"
MARKER_RECORD = "#EXTINF"
FORMAT_FILENAME = "{name}.m3u"
FORMAT_M3U = "{marker}\n{playlist}"
FORMAT_INFO = "{marker}:{duration},{artist} - {title}"
FORMAT_IOERROR = "Invalid Output Directories {directories}"
REGEX_DURATION = re.compile(
r"(.*Duration: )([0-9][0-9]:[0-9][0-9]:[0-9][0-9].[0-9][0-9])",
re.MULTILINE|re.DOTALL
)
stripnulls = lambda data: data.replace("\00", "").strip()
filetitle = lambda filePath: splitext(basename(filePath))[0]
alphatonum = lambda text: int(text) if text.isdigit() else text
alphanumkey = lambda key: [alphatonum(c) for c in re.split("([0-9]+)", key)]
def sortAlphanum(items, index=0):
return sorted(items, key=lambda x: alphanumkey(x[index]))
def timeSeconds(time):
return int(sum(
float(x) * 60 ** i
for i,x in enumerate(reversed(time.split(":")))
))
def isProgramAvailable(program):
def isExe(filePath):
return all([
isfile(filePath),
os.access(filePath, os.X_OK)
])
def isRunnable(program):
try:
subprocess.Popen(
[program],
stdout=subprocess.PIPE,
stderr=subprocess.PIPE
)
except (OSError, e):
if e.errno == errno.ENOENT:
return False
raise
return True
def isAvailable(program):
if isExe(program) and isRunnable(program):
return True
return False
filePath, fileName = pathsplit(program)
if filePath:
if isAvailable(program):
return True
else:
for path in os.environ["PATH"].split(os.pathsep):
path = path.strip('"')
filePathExe = join(path, program)
if isAvailable(filePathExe):
return True
logging.warning("Program Missing: {0}".format(program))
return False
class Playlist(object):
extensionsInclude = [".f4v"]
extensionsExclude = [".m3u"]
fieldsTag = {
"title" : ( 3, 33, stripnulls),
"artist" : ( 33, 63, stripnulls),
"album" : ( 63, 93, stripnulls),
"year" : ( 93, 97, stripnulls),
"comment" : ( 97, 126, stripnulls),
"genre" : (127, 128, ord)
}
def __init__(self, arguments):
self.rootDirectory = None
self.arguments = arguments
self.ffmpegIsAvailable = isProgramAvailable("ffmpeg")
mimetypes.init()
self.extensions = self.extensionsInclude + [
extension
for extension in mimetypes.types_map
if mimetypes.types_map[extension].split("/")[0]
in ["video", "audio"]
]
def generate(self, pathDirectory):
self.rootDirectory = pathDirectory
playlistItems = self._getPlaylistItems(pathDirectory)
playlistFilePath = self.getFileOutput(pathDirectory)
if self.arguments.verbose:
self.printPlaylistItems(playlistItems)
if not self.arguments.simulate:
self.writePlaylistItems(playlistFilePath, playlistItems)
if all([
self.arguments.play,
exists(playlistFilePath),
isfile(playlistFilePath)
]):
self.openPlaylist(playlistFilePath)
def openPlaylist(self, playlistFilePath):
if sys.platform.startswith('darwin'):
subprocess.Popen(('open', playlistFilePath))
elif os.name == 'nt':
os.startfile(playlistFilePath)
elif os.name == 'posix':
subprocess.Popen(('xdg-open', playlistFilePath))
def printPlaylistItems(self, playlistItems):
playlist = playlistItems["playlist"]
playlistSorted = self.sortPlaylist(playlist)
for playlistInfo in playlistSorted:
print(playlistInfo[1])
def _getPlaylistItems(self, pathDirectory):
return {
"marker" : MARKER_FORMAT,
"playlist" : self.getPlaylistInfo(pathDirectory)
}
def writePlaylistItems(self, filePath, items):
with open(filePath, "w") as fileOutput:
fileOutput.write(self.formatPlaylistItems(items))
def sortPlaylist(self, playlist):
return sortAlphanum(playlist, 1)
def formatPlaylistItems(self, playlistItems):
playlistFormatted = map(
lambda tags: "\n".join(tags),
playlistItems["playlist"]
)
playlistItems["playlist"] = "\n".join(playlistFormatted)
return FORMAT_M3U.format(**playlistItems)
def flattenPlaylist(self, playlist):
return sum(playlist, [])
def getPlaylistInfo(self, pathDirectory):
playlist = self.getPlaylistsInfos(pathDirectory)
playlistFlat = self.flattenPlaylist(playlist)
playlistSorted = self.sortPlaylist(playlistFlat)
return playlistSorted
def getPlaylistsInfos(self, pathDirectory):
return [
self._formatTags(tags)
for tags in self._getInfoTags(pathDirectory)
]
def getDirectoryOutput(self, directoryPaths):
for directoryPath in directoryPaths:
if directoryPath != None \
and exists(directoryPath) \
and isdir(directoryPath):
return directoryPath
raise (IOError, FORMAT_IOERROR.format(directories=directoryPaths))
def getNameOutput(self, directoryPlaylist):
if self.arguments.output_filename != None:
name = self.arguments.output_filename
else:
name = basename(directoryPlaylist)
return FORMAT_FILENAME.format(name=name)
def getFileOutput(self, pathDirectory):
directoryPlaylist = pathDirectory.rstrip(os.path.sep)
directoryOutput = self.getDirectoryOutput([
self.arguments.output_directory,
directoryPlaylist,
])
fileName = self.getNameOutput(directoryPlaylist)
filePath = join(directoryOutput, fileName)
return filePath
def _formatTags(self, tags):
return [
(FORMAT_INFO.format(**fileTags), fileTags["path"])
for fileTags in tags
]
def _getInfoTags(self, pathDirectory):
tagsFromFilePaths = [
self._getTagsFromFileNames(directoryPath, fileNames)
for directoryPath, directoryNames, fileNames in os.walk(pathDirectory)
]
return tagsFromFilePaths
def _getTagsFromFileNames(self, directoryPath, fileNames):
tagsFromFilePaths = filter(
lambda fileTag: fileTag != None,
self.getTagsFromFileNames(directoryPath, fileNames)
)
return tagsFromFilePaths
def getTagsFromFileNames(self, directoryPath, fileNames):
return [
self._getTagsFromFileName(directoryPath, fileName)
for fileName in fileNames
]
def _getTagsFromFileName(self, directoryPath, fileName):
fileTitle, fileExtension = splitext(fileName)
tagsFromFilePath = (
self.getTagsFromFileName(join(directoryPath, fileName))
if all([
fileExtension in self.extensions,
fileExtension not in self.extensionsExclude
])
else None
)
return tagsFromFilePath
def getMimeType(self, filePath):
#fileUrl = urllib.pathname2url(filePath)
fileUrl = "file:///{0}".format(filePath)
fileMimeType = mimetypes.guess_type(fileUrl)[0]
return (
False
if fileMimeType == None
else fileMimeType.split("/")[0]
)
def getTagData(self, filePath):
if self.getMimeType(filePath) != "audio":
return None
with open(filePath, "rb", 0) as fileInput:
fileInput.seek(-128, 2)
return fileInput.read(128)
def getTagsFromFileName(self, filePath):
tagData = self.getTagData(filePath)
tagsFromFilePath = dict(
self._validateTagData(tag, start, end, parseFunc, tagData)
if tagData != None
else (tag, "")
for tag, (start, end, parseFunc) in self.fieldsTag.items()
)
return self._formatTagsFromFilePath(filePath, tagsFromFilePath)
def _validateTagData(self, tag, start, end, parseFunc, tagData):
return (
(tag, re.sub("[\n\t]", " ", str(parseFunc(tagData[start:end]))))
if not self.validateTagData(tagData)
else (tag, "")
)
def validateTagData(self, tagData):
if "Reference " in str(tagData):
return False
return self.checkEncoding(tagData) != ""
def runFFmpeg(self, filePath):
process = subprocess.Popen(
["ffmpeg", "-i", filePath],
stdout=subprocess.PIPE,
stderr=subprocess.STDOUT
)
stdout, stderr = process.communicate()
return stdout
def formatTime(self, time):
try:
return str(timeSeconds(REGEX_DURATION.match(time).group(2)))
except AttributeError:
return 0
def getDuration(self, filePath):
if not self.ffmpegIsAvailable:
return 0
time = self.runFFmpeg(filePath)
return self.formatTime(time)
def checkTagTitle(self, tagTitle, filePath):
return (
tagTitle
if self.checkEncoding(tagTitle) != ""
else filetitle(filePath)
)
def checkTagArtist(self, tagArtist):
return (
tagArtist
if self.checkEncoding(tagArtist) != ""
else basename(self.rootDirectory).strip()
)
def checkEncoding(self, text):
#try:
# text.decode("utf-8")
#except UnicodeDecodeError:
# return ""
return text.strip()
def getTagPath(self, filePath):
filePathChild = re.sub(r"^"+re.escape(self.rootDirectory), "", filePath)
return (
filePathChild.lstrip(os.path.sep)
if self.arguments.relative
else filePath
)
def _formatTagsFromFilePath(self, filePath, tagsFromFilePath):
tags = {
"marker" : MARKER_RECORD,
"path" : self.getTagPath(filePath),
"duration" : self.getDuration(filePath),
"title" : self.checkTagTitle(tagsFromFilePath["title"], filePath),
"artist" : self.checkTagArtist(tagsFromFilePath["artist"])
}
tagsFromFilePath.update(tags)
return tagsFromFilePath
class Parser(argparse.ArgumentParser):
def __init__(self, *args, **kwargs):
super(Parser, self).__init__(*args, **kwargs)
def addOption(self, option):
options = option["options"]
option.pop("options")
self.add_argument(*options, **option)
def parseOptions(self, options, args):
for option in options:
self.addOption(option)
return super(Parser, self).parse_args(args)
#---------
# MAIN
#---------
def main(args=None):
parser = Parser(description=__doc__)
arguments = parser.parseOptions(options,
sys.argv[1:] if args is None else args)
if exists(arguments.directory) and isdir(arguments.directory):
playlist = Playlist(arguments)
playlist.generate(arguments.directory)
if __name__ == '__main__':
sys.exit(main(sys.argv[1:]) or 0)