-
Notifications
You must be signed in to change notification settings - Fork 56
/
plex_dupefinder.py
executable file
·458 lines (401 loc) · 17.6 KB
/
plex_dupefinder.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
#!/usr/bin/env python3
import collections
import itertools
import logging
import os
import sys
import time
from fnmatch import fnmatch
from tabulate import tabulate
from config import cfg
try:
from urlparse import urljoin
except ImportError:
from urllib.parse import urljoin
from plexapi.server import PlexServer
import requests
############################################################
# INIT
############################################################
# Setup logger
log_filename = os.path.join(os.path.dirname(os.path.realpath(sys.argv[0])), 'activity.log')
logging.basicConfig(
filename=log_filename,
level=logging.DEBUG,
format='[%(asctime)s] %(levelname)s - %(message)s',
datefmt='%H:%M:%S'
)
logging.getLogger('urllib3.connectionpool').disabled = True
log = logging.getLogger("Plex_Dupefinder")
# Setup PlexServer object
try:
plex = PlexServer(cfg['PLEX_SERVER'], cfg['PLEX_TOKEN'])
except:
log.exception("Exception connecting to server %r with token %r", cfg['PLEX_SERVER'], cfg['PLEX_TOKEN'])
print(f"Exception connecting to {cfg['PLEX_SERVER']} with token: {cfg['PLEX_TOKEN']}")
exit(1)
############################################################
# PLEX METHODS
############################################################
def get_dupes(plex_section_name):
sec_type = get_section_type(plex_section_name)
dupe_search_results = plex.library.section(plex_section_name).search(duplicate=True, libtype=sec_type)
dupe_search_results_new = dupe_search_results.copy()
if cfg['FIND_DUPLICATE_FILEPATHS_ONLY']:
for dupe in dupe_search_results:
if any(x != dupe.locations[0] for x in dupe.locations):
dupe_search_results_new.remove(dupe)
return dupe_search_results_new
def get_section_type(plex_section_name):
try:
plex_section_type = plex.library.section(plex_section_name).type
except Exception:
log.exception("Exception occurred while trying to lookup the section type for Library: %s", plex_section_name)
exit(1)
return 'episode' if plex_section_type == 'show' else 'movie'
def get_score(media_info):
score = 0
# score audio codec
for codec, codec_score in cfg['AUDIO_CODEC_SCORES'].items():
if codec.lower() == media_info['audio_codec'].lower():
score += int(codec_score)
log.debug("Added %d to score for audio_codec being %r", int(codec_score), str(codec))
break
# score video codec
for codec, codec_score in cfg['VIDEO_CODEC_SCORES'].items():
if codec.lower() == media_info['video_codec'].lower():
score += int(codec_score)
log.debug("Added %d to score for video_codec being %r", int(codec_score), str(codec))
break
# score video resolution
for resolution, resolution_score in cfg['VIDEO_RESOLUTION_SCORES'].items():
if resolution.lower() == media_info['video_resolution'].lower():
score += int(resolution_score)
log.debug("Added %d to score for video_resolution being %r", int(resolution_score), str(resolution))
break
# score filename
for filename_keyword, keyword_score in cfg['FILENAME_SCORES'].items():
for filename in media_info['file']:
if fnmatch(os.path.basename(filename.lower()), filename_keyword.lower()):
score += int(keyword_score)
log.debug("Added %d to score for match filename_keyword %s", int(keyword_score), filename_keyword)
# add bitrate to score
score += int(media_info['video_bitrate']) * 2
log.debug("Added %d to score for video bitrate", int(media_info['video_bitrate']) * 2)
# add duration to score
score += int(media_info['video_duration']) / 300
log.debug("Added %d to score for video duration", int(media_info['video_duration']) / 300)
# add width to score
score += int(media_info['video_width']) * 2
log.debug("Added %d to score for video width", int(media_info['video_width']) * 2)
# add height to score
score += int(media_info['video_height']) * 2
log.debug("Added %d to score for video height", int(media_info['video_height']) * 2)
# add audio channels to score
score += int(media_info['audio_channels']) * 1000
log.debug("Added %d to score for audio channels", int(media_info['audio_channels']) * 1000)
# add file size to score
if cfg['SCORE_FILESIZE']:
score += int(media_info['file_size']) / 100000
log.debug("Added %d to score for total file size", int(media_info['file_size']) / 100000)
return int(score)
def get_media_info(item):
info = {
'id': 'Unknown',
'video_bitrate': 0,
'audio_codec': 'Unknown',
'audio_channels': 0,
'video_codec': 'Unknown',
'video_resolution': 'Unknown',
'video_width': 0,
'video_height': 0,
'video_duration': 0,
'file': [],
'multipart': False,
'file_size': 0
}
# get id
try:
info['id'] = item.id
except AttributeError:
log.debug("Media item has no id")
# get bitrate
try:
info['video_bitrate'] = item.bitrate if item.bitrate else 0
except AttributeError:
log.debug("Media item has no bitrate")
# get video codec
try:
info['video_codec'] = item.videoCodec if item.videoCodec else 'Unknown'
except AttributeError:
log.debug("Media item has no videoCodec")
# get video resolution
try:
info['video_resolution'] = item.videoResolution if item.videoResolution else 'Unknown'
except AttributeError:
log.debug("Media item has no videoResolution")
# get video height
try:
info['video_height'] = item.height if item.height else 0
except AttributeError:
log.debug("Media item has no height")
# get video width
try:
info['video_width'] = item.width if item.width else 0
except AttributeError:
log.debug("Media item has no width")
# get video duration
try:
info['video_duration'] = item.duration if item.duration else 0
except AttributeError:
log.debug("Media item has no duration")
# get audio codec
try:
info['audio_codec'] = item.audioCodec if item.audioCodec else 'Unknown'
except AttributeError:
log.debug("Media item has no audioCodec")
# get audio channels
try:
for part in item.parts:
for stream in part.audioStreams():
if stream.channels:
log.debug(f"Added {stream.channels} channels for {stream.title if stream.title else 'Unknown'} audioStream")
info['audio_channels'] += stream.channels
if info['audio_channels'] == 0:
info['audio_channels'] = item.audioChannels if item.audioChannels else 0
except AttributeError:
log.debug("Media item has no audioChannels")
# is this a multi part (cd1/cd2)
if len(item.parts) > 1:
info['multipart'] = True
for part in item.parts:
info['file'].append(part.file)
info['file_size'] += part.size if part.size else 0
return info
def delete_item(show_key, media_id):
delete_url = urljoin(cfg['PLEX_SERVER'], '%s/media/%d' % (show_key, media_id))
log.debug("Sending DELETE request to %r" % delete_url)
if requests.delete(delete_url, headers={'X-Plex-Token': cfg['PLEX_TOKEN']}).status_code == 200:
print("\t\tDeleted media item: %r" % media_id)
else:
print("\t\tError deleting media item: %r" % media_id)
############################################################
# MISC METHODS
############################################################
decision_filename = os.path.join(os.path.dirname(os.path.realpath(sys.argv[0])), 'decisions.log')
def write_decision(title=None, keeping=None, removed=None):
lines = []
if title:
lines.append('\nTitle : %s\n' % title)
if keeping:
lines.append('\tKeeping : %r\n' % keeping)
if removed:
lines.append('\tRemoving : %r\n' % removed)
with open(decision_filename, 'a') as fp:
fp.writelines(lines)
return
def should_skip(files):
return any(skip_item in str(files_item) for files_item, skip_item in itertools.product(files, cfg['SKIP_LIST']))
def millis_to_string(millis):
""" reference: https://stackoverflow.com/a/35990338 """
try:
seconds = (millis / 1000) % 60
seconds = int(seconds)
minutes = (millis / (1000 * 60)) % 60
minutes = int(minutes)
hours = (millis / (1000 * 60 * 60)) % 24
return "%02d:%02d:%02d" % (hours, minutes, seconds)
except Exception:
log.exception(f"Exception occurred converting {millis} millis to readable string: ")
return "%d milliseconds" % millis
def bytes_to_string(size_bytes):
"""
reference: https://stackoverflow.com/a/6547474
"""
try:
if size_bytes == 1:
return "1 byte"
suffixes_table = [('bytes', 0), ('KB', 0), ('MB', 1), ('GB', 2), ('TB', 2), ('PB', 2)]
num = float(size_bytes)
for suffix, precision in suffixes_table:
if num < 1024.0:
break
num /= 1024.0
if precision == 0:
formatted_size = "%d" % num
else:
formatted_size = str(round(num, ndigits=precision))
return f"{formatted_size} {suffix}"
except Exception:
log.exception(f"Exception occurred converting {size_bytes} bytes to readable string: ")
return "%d bytes" % size_bytes
def kbps_to_string(size_kbps):
try:
if size_kbps < 1024:
return "%d Kbps" % size_kbps
else:
return "{:.2f} Mbps".format(size_kbps / 1024.)
except Exception:
log.exception(f"Exception occurred converting {size_kbps} Kbps to readable string: ")
return "%d Bbps" % size_kbps
def build_tabulated(parts, items):
headers = ['choice', 'score', 'id', 'file', 'size', 'duration', 'bitrate', 'resolution',
'codecs']
if cfg['FIND_DUPLICATE_FILEPATHS_ONLY']:
headers.remove('score')
part_data = []
for choice, item_id in items.items():
# add to part_data
tmp = []
for k in headers:
if 'choice' in k:
tmp.append(choice)
elif 'score' in k:
tmp.append(str(format(parts[item_id][k], ',d')))
elif 'id' in k:
tmp.append(parts[item_id][k])
elif 'file' in k:
tmp.append(parts[item_id][k])
elif 'size' in k:
tmp.append(bytes_to_string(parts[item_id]['file_size']))
elif 'duration' in k:
tmp.append(millis_to_string(parts[item_id]['video_duration']))
elif 'bitrate' in k:
tmp.append(kbps_to_string(parts[item_id]['video_bitrate']))
elif 'resolution' in k:
tmp.append("%s (%d x %d)" % (parts[item_id]['video_resolution'], parts[item_id]['video_width'],
parts[item_id]['video_height']))
elif 'codecs' in k:
tmp.append("%s, %s x %d" % (parts[item_id]['video_codec'], parts[item_id]['audio_codec'],
parts[item_id]['audio_channels']))
part_data.append(tmp)
return headers, part_data
############################################################
# MAIN
############################################################
if __name__ == "__main__":
print("""
_ _ __ _ _
_ __ | | _____ __ __| |_ _ _ __ ___ / _(_)_ __ __| | ___ _ __
| '_ \| |/ _ \ \/ / / _` | | | | '_ \ / _ \ |_| | '_ \ / _` |/ _ \ '__|
| |_) | | __/> < | (_| | |_| | |_) | __/ _| | | | | (_| | __/ |
| .__/|_|\___/_/\_\ \__,_|\__,_| .__/ \___|_| |_|_| |_|\__,_|\___|_|
|_| |_|
#########################################################################
# Author: l3uddz #
# URL: https://github.com/l3uddz/plex_dupefinder #
# -- #
# Part of the Cloudbox project: https://cloudbox.works #
#########################################################################
# GNU General Public License v3.0 #
#########################################################################
""")
print("Initialized")
process_later = {}
# process sections
print("Finding dupes...")
for section in cfg['PLEX_LIBRARIES']:
dupes = get_dupes(section)
print("Found %d dupes for section %r" % (len(dupes), section))
# loop returned duplicates
for item in dupes:
if item.type == 'episode':
title = "%s - %02dx%02d - %s" % (
item.grandparentTitle, int(item.parentIndex), int(item.index), item.title)
elif item.type == 'movie':
title = item.title
else:
title = 'Unknown'
log.info("Processing: %r", title)
# loop returned parts for media item (copy 1, copy 2...)
parts = {}
for part in item.media:
part_info = get_media_info(part)
if not cfg['FIND_DUPLICATE_FILEPATHS_ONLY']:
part_info['score'] = get_score(part_info)
part_info['show_key'] = item.key
log.info("ID: %r - Score: %s - Meta:\n%r", part.id, part_info.get('score', 'N/A'),
part_info)
parts[part.id] = part_info
process_later[title] = parts
# process processed items
time.sleep(5)
for item, parts in process_later.items():
if not cfg['AUTO_DELETE']:
partz = {}
# manual delete
print("\nWhich media item do you wish to keep for %r ?\n" % item)
sort_key = None
sort_order = None
if cfg['FIND_DUPLICATE_FILEPATHS_ONLY']:
sort_key = "id"
sort_order_reverse = False
else:
sort_key = "score"
sort_order_reverse = True
media_items = {}
best_item = None
for pos, (media_id, part_info) in enumerate(collections.OrderedDict(
sorted(parts.items(), key=lambda x: x[1][sort_key], reverse=sort_order_reverse)).items(), start=1):
if pos == 1:
best_item = part_info
media_items[pos] = media_id
partz[media_id] = part_info
headers, data = build_tabulated(partz, media_items)
print(tabulate(data, headers=headers))
keep_item = input("\nChoose item to keep (0 or s = skip | 1 or b = best): ")
if (keep_item.lower() != 's') and (keep_item.lower() == 'b' or 0 < int(keep_item) <= len(media_items)):
write_decision(title=item)
for media_id, part_info in parts.items():
if keep_item.lower() == 'b' and best_item is not None and best_item == part_info:
print("\tKeeping : %r" % media_id)
write_decision(keeping=part_info)
elif keep_item.lower() != 'b' and len(media_items) and media_id == media_items[int(keep_item)]:
print("\tKeeping : %r" % media_id)
write_decision(keeping=part_info)
else:
print("\tRemoving : %r" % media_id)
delete_item(part_info['show_key'], media_id)
write_decision(removed=part_info)
time.sleep(2)
elif keep_item.lower() == 's' or int(keep_item) == 0:
print("Skipping deletion(s) for %r" % item)
else:
print("Unexpected response, skipping deletion(s) for %r" % item)
else:
# auto delete
print("\nDetermining best media item to keep for %r ..." % item)
keep_score = 0
keep_id = None
if cfg['FIND_DUPLICATE_FILEPATHS_ONLY']:
# select lowest id to keep
for media_id, part_info in parts.items():
if keep_score == 0 and keep_id is None:
keep_score = int(part_info['id'])
keep_id = media_id
elif int(part_info['id']) < keep_score:
keep_score = part_info['id']
keep_id = media_id
else:
# select highest score to keep
for media_id, part_info in parts.items():
if int(part_info['score']) > keep_score:
keep_score = part_info['score']
keep_id = media_id
if keep_id:
# delete other items
write_decision(title=item)
for media_id, part_info in parts.items():
if media_id == keep_id:
print("\tKeeping : %r - %r" % (media_id, part_info['file']))
write_decision(keeping=part_info)
else:
print("\tRemoving : %r - %r" % (media_id, part_info['file']))
if should_skip(part_info['file']):
print("\tSkipping removal of this item as there is a match in SKIP_LIST")
continue
delete_item(part_info['show_key'], media_id)
write_decision(removed=part_info)
time.sleep(2)
else:
print("Unable to determine best media item to keep for %r", item)