Bugfix for unable [ERR] {TITLE} parse ts urls failed

See issue: #872 

Tested and verified this change works locally.
This commit is contained in:
RandomNinjaAtk
2022-06-20 18:05:28 -04:00
committed by GitHub
parent 8876be13b6
commit 84b9f6f6bc

View File

@@ -135,7 +135,7 @@ class TidalAPI(object):
def __getResolutionList__(self, url):
ret = []
txt = requests.get(url).text
txt = requests.get(url).content.decode('utf-8')
# array = txt.split("#EXT-X-STREAM-INF")
array = txt.split("#")
for item in array: