mirror of
https://github.com/spaam/svtplay-dl.git
synced 2024-11-24 04:05:39 +01:00
Better fix for DN.se
This commit is contained in:
parent
e14009bf02
commit
ff7e9f5855
11
svtplay-dl
11
svtplay-dl
@ -602,10 +602,15 @@ def main():
|
||||
data = common.getdata(url)
|
||||
match = re.search("data-qbrick-mcid=\"([0-9A-F]+)\"", data)
|
||||
if not match:
|
||||
print("Something wrong with that url")
|
||||
sys.exit(2)
|
||||
match = re.search("mediaId = \'([0-9A-F]+)\';", data)
|
||||
if not match:
|
||||
print("Something wrong with that url")
|
||||
sys.exit(2)
|
||||
mcid = match.group(1) + "DE1BA107"
|
||||
else:
|
||||
mcid = match.group(1)
|
||||
qbrick = Qbrick(output, quality, live, resume)
|
||||
host = "http://vms.api.qbrick.com/rest/v3/getsingleplayer/" + match.group(1)
|
||||
host = "http://vms.api.qbrick.com/rest/v3/getsingleplayer/" + mcid
|
||||
data = common.getdata(host)
|
||||
xml = ET.XML(data)
|
||||
try:
|
||||
|
Loading…
Reference in New Issue
Block a user