mirror of
https://github.com/spaam/svtplay-dl.git
synced 2024-11-27 21:54:17 +01:00
tv4play: support for downloading lastest X episodes
This commit is contained in:
parent
113fbbfd88
commit
48dd670625
@ -157,6 +157,7 @@ class Tv4play(Service, OpenGraphThumbMixin):
|
||||
error, data = get_http_data("http://webapi.tv4play.se/play/video_assets?type=episode&is_live=false&platform=web&node_nids=%s&per_page=99999" % show)
|
||||
jsondata = json.loads(data)
|
||||
episodes = []
|
||||
n = 1
|
||||
for i in jsondata["results"]:
|
||||
try:
|
||||
days = int(i["availability"]["availability_group_free"])
|
||||
@ -167,4 +168,8 @@ class Tv4play(Service, OpenGraphThumbMixin):
|
||||
url = "http://www.tv4play.se/program/%s?video_id=%s" % (
|
||||
show, video_id)
|
||||
episodes.append(url)
|
||||
if n == options.all_last:
|
||||
break
|
||||
n += 1
|
||||
|
||||
return episodes
|
||||
|
Loading…
Reference in New Issue
Block a user