mirror of
https://github.com/spaam/svtplay-dl.git
synced 2024-11-24 04:05:39 +01:00
c547125921
0.6 was to low because it was good enough for the first entry and the ads
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.7:
|
|
files.append(segment)
|
|
m3u8.media_segment = files
|
|
return m3u8
|