mirror of
https://github.com/spaam/svtplay-dl.git
synced 2024-11-27 21:54:17 +01:00
12 lines
307 B
Python
12 lines
307 B
Python
from difflib import SequenceMatcher
|
|
|
|
|
|
def filter_files(m3u8):
|
|
files = []
|
|
good = m3u8.media_segment[1]["URI"]
|
|
for segment in m3u8.media_segment:
|
|
if SequenceMatcher(None, good, segment["URI"]).ratio() > 0.6:
|
|
files.append(segment)
|
|
m3u8.media_segment = files
|
|
return m3u8
|