1
0
mirror of https://github.com/spaam/svtplay-dl.git synced 2024-11-23 11:45:38 +01:00

Compare commits

...

14 Commits

Author SHA1 Message Date
I'm an OSK user, are you?
03f52f298b
Merge c81de1f693 into ace235c6c8 2024-10-27 15:07:21 +01:00
Johan Andersson
ace235c6c8 unittest: fix formatname ones 2024-10-25 22:06:38 +02:00
Johan Andersson
2083ee9978 Revert "Not used anymore"
Pepega. its used by windoze
This reverts commit da6654396b.
2024-10-25 21:45:29 +02:00
Johan Andersson
ce5859346c svtplay: fix a small corner case with some videos.
for some reason some sign videos had no default key in variants
2024-10-25 21:42:06 +02:00
Johan Andersson
583a2edf4d docker: use latest instead of edge 2024-10-25 21:42:06 +02:00
Johan Andersson
f8a450208c tv4play: improved detection of content we can download 2024-10-25 21:42:06 +02:00
Johan Andersson
e65e90c62e tv4play: improve drm message 2024-10-25 21:42:06 +02:00
Johan Andersson
da6654396b Not used anymore 2024-10-25 21:42:06 +02:00
Johan Andersson
6f6d970f0b dr.dk: update 2024-10-25 21:42:06 +02:00
Johan Andersson
759feec608 output: fix adding extensions even when its not specified 2024-10-25 21:42:06 +02:00
Johan Andersson
634411666e tv4play: support for specify season to download 2024-10-25 21:42:06 +02:00
Johan Andersson
74c7d25293 hls: in some cases the alt stream get the wrong info 2024-10-25 21:42:06 +02:00
Filip Elander
c4afda5919
Aftonbladet premium (#1653)
* added token and HMAC encoding to tv.aftonbladet url

Co-authored-by: filipelander <filipelander.elander@sponswatch.com>
2024-10-25 21:31:10 +02:00
I'm an OSK user, are you?
c81de1f693
Update README.md
Replaced dplay.se with discoveryplus.com
Removed comedycentral.se (it will redirect to paramount.com)
Removed kanal9play.se (site is dead)
2023-10-16 16:11:15 +02:00
9 changed files with 87 additions and 50 deletions

View File

@ -115,15 +115,13 @@ This script works for:
- aftonbladet.se
- bambuser.com
- comedycentral.se
- di.se
- discoveryplus.com
- dn.se
- dplay.se
- dr.dk
- efn.se
- expressen.se
- hbo.com
- kanal9play.se
- nickelodeon.nl
- nickelodeon.no
- nickelodeon.se
@ -143,7 +141,6 @@ This script works for:
- ur.se
- urplay.se
- vg.no
- viagame.com
## License

View File

@ -1,5 +1,5 @@
# using edge to get ffmpeg-4.x
FROM alpine:edge
FROM alpine:latest
LABEL maintainer="j@i19.se"
COPY dist/*.whl .

View File

@ -97,7 +97,7 @@ def _hlsparse(config, text, url, output, **kwargs):
if "CHARACTERISTICS" in i:
role = f'{role}-{i["CHARACTERISTICS"].replace("se.svt.accessibility.", "")}'
media[i["GROUP-ID"]].append([uri, chans, language, role])
media[i["GROUP-ID"]].append([uri, chans, language, role, segments])
if i["TYPE"] == "SUBTITLES":
if "URI" in i:
@ -161,7 +161,7 @@ def _hlsparse(config, text, url, output, **kwargs):
role=group[3],
video_role=video_role,
output=loutput,
segments=bool(segments),
segments=bool(group[4]),
channels=chans,
codec=codec,
resolution=resolution,
@ -187,7 +187,7 @@ def _hlsparse(config, text, url, output, **kwargs):
audio=audio_url,
video_role=video_role,
output=loutput,
segments=bool(segments),
segments=bool(group[4]),
channels=chans,
codec=codec,
resolution=resolution,

View File

@ -14,7 +14,6 @@ class Aftonbladettv(Service):
def get(self):
data = self.get_urldata()
match = re.search('data-player-config="([^"]+)"', data)
if not match:
match = re.search('data-svpPlayer-video="([^"]+)"', data)
@ -24,7 +23,27 @@ class Aftonbladettv(Service):
yield ServiceError("Can't find video info")
return
data = json.loads(decode_html_entities(match.group(1)))
yield from hlsparse(self.config, self.http.request("get", data["streamUrls"]["hls"]), data["streamUrls"]["hls"], output=self.output)
hdnea = self._login()
url = data["streamUrls"]["hls"] + hdnea if hdnea else data["streamUrls"]["hls"]
yield from hlsparse(config=self.config, res=self.http.request("get", url), url=url, output=self.output)
def _login(self):
if (token := self.config.get("token")) is None:
return None
if (match := re.search(r"^.*tv.aftonbladet.+video/([a-zA-Z0-9]+)/.*$", self.url)) is None:
return None
service = match.group(1)
res = self.http.request("get", f"https://svp-token-api.aftonbladet.se/svp/token/{service}?access=plus", headers={"x-sp-id": token})
if res.status_code != 200:
return None
expires = res.json()["expiry"]
hmac = res.json()["value"]
res = self.http.request("get", f"https://svp.vg.no/svp/token/v1/?vendor=ab&assetId={service}&expires={expires}&hmac={hmac}")
if res.status_code != 200:
return None
return f"?hdnea={res.text.replace('/', '%2F').replace('=', '%3D').replace(',', '%2C')}"
class Aftonbladet(Service):

View File

@ -3,7 +3,6 @@ import json
import logging
import re
import uuid
from urllib.parse import urlparse
from svtplay_dl.error import ServiceError
from svtplay_dl.fetcher.hls import hlsparse
@ -31,6 +30,11 @@ class Dr(Service, OpenGraphThumbMixin):
else:
yield from hlsparse(self.config, res, match.group(1), output=self.output)
return
apimatch = re.search("CLIENT_SERVICE_URL='([^']+)", data)
if not apimatch:
yield ServiceError("Can't find api server.")
return
apiserver = apimatch.group(1)
janson = json.loads(match.group(1))
page = janson["cache"]["page"][list(janson["cache"]["page"].keys())[0]]
resolution = None
@ -55,7 +59,7 @@ class Dr(Service, OpenGraphThumbMixin):
offerlist = []
for i in offers:
if i["deliveryType"] == "Stream":
if i["deliveryType"] == "StreamOrDownload":
offerlist.append([i["scopes"][0], i["resolution"]])
deviceid = uuid.uuid1()
@ -73,10 +77,13 @@ class Dr(Service, OpenGraphThumbMixin):
for i in offerlist:
vid, resolution = i
url = (
f"https://isl.dr-massive.com/api/account/items/{vid}/videos?delivery=stream&device=web_browser&"
f"{apiserver}/account/items/{vid}/videos?delivery=stream&device=web_browser&"
f"ff=idp%2Cldp&lang=da&resolution={resolution}&sub=Anonymous"
)
res = self.http.request("get", url, headers={"authorization": f"Bearer {token}"})
if res.status_code > 400:
yield ServiceError("Can't find the video or its geoblocked")
return
for video in res.json():
if video["accessService"] == "StandardVideo" and video["format"] == "video/hls":
res = self.http.request("get", video["url"])
@ -93,26 +100,25 @@ class Dr(Service, OpenGraphThumbMixin):
data = self.get_urldata()
match = re.search("__data = ([^<]+)</script>", data)
if not match:
if "bonanza" in self.url:
parse = urlparse(self.url)
match = re.search(r"(\/bonanza\/serie\/[0-9]+\/[\-\w]+)", parse.path)
if match:
match = re.findall(rf"a href=\"({match.group(1)}\/\d+[^\"]+)\"", data)
if not match:
logging.error("Can't find video info.")
for url in match:
episodes.append(f"https://www.dr.dk{url}")
else:
logging.error("Can't find video info.")
return episodes
else:
logging.error("Can't find video info.")
return episodes
logging.error("Can't find video info.")
return episodes
janson = json.loads(match.group(1))
if "/saeson/" in self.url:
page = janson["cache"]["page"][list(janson["cache"]["page"].keys())[0]]
for i in page["item"]["show"]["seasons"]["items"]:
seasons.append(f'https://www.dr.dk/drtv{i["path"]}')
page = janson["cache"]["page"][list(janson["cache"]["page"].keys())[0]]
if "show" in page["item"] and "seasons" in page["item"]["show"]:
for i in page["item"]["show"]["seasons"]["items"]:
if (
"item" in page["entries"][0]
and "season" in page["entries"][0]["item"]
and "show" in page["entries"][0]["item"]["season"]
and "seasons" in page["entries"][0]["item"]["season"]["show"]
):
for i in page["entries"][0]["item"]["season"]["show"]["seasons"]["items"]:
seasons.append(f'https://www.dr.dk/drtv{i["path"]}')
if seasons:

View File

@ -116,11 +116,11 @@ class Svtplay(Service, MetadataThumbMixin):
drm = janson["rights"]["drmCopyProtection"]
if not drm and "variants" in janson and "default" in janson["variants"]:
if len(janson["variants"]["default"]["videoReferences"]) == 0:
if len(janson["videoReferences"]) == 0:
yield ServiceError("Media doesn't have any associated videos.")
return
for videorfc in janson["variants"]["default"]["videoReferences"]:
for videorfc in janson["videoReferences"]:
params = {}
special = False
params["manifestUrl"] = quote_plus(videorfc["url"])

View File

@ -4,6 +4,7 @@ import json
import logging
import re
import time
from urllib.parse import parse_qs
from urllib.parse import urlparse
from svtplay_dl.error import ServiceError
@ -54,7 +55,7 @@ class Tv4play(Service, OpenGraphThumbMixin):
item = jansson["metadata"]
if item["isDrmProtected"]:
yield ServiceError("We can't download DRM protected content from this site.")
yield ServiceError("We can't download DRM protected content from this site. This isn't a svtplay-dl issue.")
return
if item["isLive"]:
@ -107,6 +108,7 @@ class Tv4play(Service, OpenGraphThumbMixin):
def find_all_episodes(self, config):
episodes = []
items = []
seasonq = None
parse = urlparse(self.url)
if parse.path.startswith("/klipp"):
@ -130,6 +132,8 @@ class Tv4play(Service, OpenGraphThumbMixin):
episodes = self._graphlista(token, show)
return episodes
query = parse_qs(parse.query)
seasonq = query.get("season", None)
showid, jansson, kind = self._get_seriesid(self.get_urldata(), dict())
if showid is None:
logging.error("Cant find any videos")
@ -139,12 +143,20 @@ class Tv4play(Service, OpenGraphThumbMixin):
return episodes
if kind == "Movie":
return [f"https://www.tv4play.se/video/{showid}"]
jansson = self._graphdetails(token, showid)
for season in jansson["data"]["media"]["allSeasonLinks"]:
graph_list = self._graphql(season["seasonId"])
for i in graph_list:
if i not in items:
items.append(i)
graph_list = None
for season in reversed(jansson["data"]["media"]["allSeasonLinks"]):
if seasonq:
if seasonq[0] == season["seasonId"]:
graph_list = self._graphql(token, season["seasonId"])
else:
graph_list = self._graphql(token, season["seasonId"])
if graph_list:
for i in graph_list:
if i not in items:
items.append(i)
for item in items:
episodes.append(f"https://www.tv4play.se/video/{item}")
@ -197,7 +209,7 @@ class Tv4play(Service, OpenGraphThumbMixin):
}
res = self.http.request(
"post",
"https://client-gateway.tv4.a2d.tv/graphql",
"https://nordic-gateway.tv4.a2d.tv/graphql",
headers={"Client-Name": "tv4-web", "Client-Version": "5.2.0", "Content-Type": "application/json", "Authorization": f"Bearer {token}"},
json=data,
)
@ -241,13 +253,13 @@ class Tv4play(Service, OpenGraphThumbMixin):
}
res = self.http.request(
"post",
"https://client-gateway.tv4.a2d.tv/graphql",
"https://nordic-gateway.tv4.a2d.tv/graphql",
headers={"Client-Name": "tv4-web", "Client-Version": "5.2.0", "Content-Type": "application/json", "Authorization": f"Bearer {token}"},
json=data,
)
return res.json()
def _graphql(self, show):
def _graphql(self, token, show):
items = []
nr = 0
total = 100
@ -260,8 +272,8 @@ class Tv4play(Service, OpenGraphThumbMixin):
res = self.http.request(
"post",
"https://client-gateway.tv4.a2d.tv/graphql",
headers={"Client-Name": "tv4-web", "Client-Version": "5.2.0", "Content-Type": "application/json"},
"https://nordic-gateway.tv4.a2d.tv/graphql",
headers={"Client-Name": "tv4-web", "Client-Version": "5.2.0", "Content-Type": "application/json", "Authorization": f"Bearer {token}"},
json=data,
)
janson = res.json()

View File

@ -236,25 +236,25 @@ class formatnameTest(unittest.TestCase):
[
"{episodename}a{title}-{service}",
{"title": "title", "season": 99, "episode": 21, "episodename": "episodename", "id": "0xdeadface", "ext": "ext"},
"episodenameatitle-service",
"episodenameatitle-service.mp4",
],
[
"{episodename}a{title}-{service}",
{"title": "title", "season": 99, "episodename": "episodename", "id": "0xdeadface", "ext": "ext"},
"episodenameatitle-service",
"episodenameatitle-service.mp4",
],
["{episodename}a{title}-{service}", {"title": "title", "season": 99, "id": "0xdeadface", "ext": "ext"}, "atitle-service"],
["{episodename}a{title}-{service}", {"title": "title", "season": 99, "id": "0xdeadface", "ext": "ext"}, "atitle-service.mp4"],
[
"{episodename}a{title}-{service}",
{"title": "title", "episode": 21, "episodename": "episodename", "id": "0xdeadface", "ext": "ext"},
"episodenameatitle-service",
"episodenameatitle-service.mp4",
],
[
"{episodename}a{title}-{service}",
{"title": "title", "episodename": "episodename", "id": "0xdeadface", "ext": "ext"},
"episodenameatitle-service",
"episodenameatitle-service.mp4",
],
["{episodename}a{title}-{service}", {"title": "title", "episodename": "episodename", "id": "0xdeadface"}, "episodenameatitle-service"],
["{episodename}a{title}-{service}", {"title": "title", "episodename": "episodename", "id": "0xdeadface"}, "episodenameatitle-service.mp4"],
[
"{title}.{episode}.{episodename}-{id}-{service}.{ext}",
{"title": "title", "season": 99, "episode": 21, "episodename": "episodename", "id": "0xdeadface", "ext": "ext"},

View File

@ -194,7 +194,10 @@ def _formatname(output, config):
if key == "service" and output[key]:
name = name.replace("{service}", output[key])
if key == "ext" and output[key]:
name = name.replace("{ext}", output[key])
if "{ext}" in name:
name = name.replace("{ext}", output[key])
else:
name = f"{name}.{output[key]}"
# Remove all {text} we cant replace with something
for item in re.findall(r"([\.\-]?(([^\.\-]+\w+)?\{[\w\-]+\}))", name):