2013-03-10 14:18:39 +01:00
|
|
|
# ex:ts=4:sw=4:sts=4:et
|
|
|
|
# -*- tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*-
|
|
|
|
from __future__ import absolute_import
|
2019-08-25 00:40:39 +02:00
|
|
|
|
|
|
|
import copy
|
2013-03-10 14:18:39 +01:00
|
|
|
import json
|
2013-11-14 22:56:32 +01:00
|
|
|
import re
|
2013-11-12 20:46:08 +01:00
|
|
|
|
2015-09-06 14:19:10 +02:00
|
|
|
from svtplay_dl.error import ServiceError
|
2018-03-19 20:51:38 +01:00
|
|
|
from svtplay_dl.fetcher.hls import hlsparse
|
2019-08-25 00:40:39 +02:00
|
|
|
from svtplay_dl.fetcher.http import HTTP
|
|
|
|
from svtplay_dl.service import OpenGraphThumbMixin
|
|
|
|
from svtplay_dl.service import Service
|
2018-03-19 20:51:38 +01:00
|
|
|
|
2015-09-15 20:10:32 +02:00
|
|
|
|
2014-01-26 01:52:11 +01:00
|
|
|
class Vimeo(Service, OpenGraphThumbMixin):
|
2019-08-25 00:27:31 +02:00
|
|
|
supported_domains = ["vimeo.com"]
|
2013-03-10 14:18:39 +01:00
|
|
|
|
2015-12-26 11:46:14 +01:00
|
|
|
def get(self):
|
2015-08-30 11:27:31 +02:00
|
|
|
data = self.get_urldata()
|
2014-12-22 17:41:40 +01:00
|
|
|
|
2018-05-13 14:20:57 +02:00
|
|
|
match_cfg_url = re.search('data-config-url="([^"]+)" data-fallback-url', data)
|
2019-08-25 00:27:31 +02:00
|
|
|
match_clip_page_cfg = re.search(r"vimeo\.clip_page_config\s*=\s*({.+?});", data)
|
2018-05-13 14:20:57 +02:00
|
|
|
|
|
|
|
if match_cfg_url:
|
|
|
|
player_url = match_cfg_url.group(1).replace("&", "&")
|
|
|
|
elif match_clip_page_cfg:
|
|
|
|
page_config = json.loads(match_clip_page_cfg.group(1))
|
|
|
|
player_url = page_config["player"]["config_url"]
|
|
|
|
else:
|
2019-08-25 00:33:51 +02:00
|
|
|
yield ServiceError("Can't find video file for: {}".format(self.url))
|
2014-10-06 23:21:43 +02:00
|
|
|
return
|
2018-03-19 19:19:37 +01:00
|
|
|
|
2015-09-07 19:02:43 +02:00
|
|
|
player_data = self.http.request("get", player_url).text
|
2013-03-10 14:18:39 +01:00
|
|
|
|
2013-11-12 20:46:08 +01:00
|
|
|
if player_data:
|
2018-03-19 20:51:38 +01:00
|
|
|
|
2013-11-12 20:46:08 +01:00
|
|
|
jsondata = json.loads(player_data)
|
2018-03-19 20:51:38 +01:00
|
|
|
|
2019-09-06 22:31:52 +02:00
|
|
|
if ("hls" in jsondata["request"]["files"]) and (
|
|
|
|
"fastly_skyfire" in jsondata["request"]["files"]["hls"]["cdns"]
|
|
|
|
):
|
2018-03-19 20:51:38 +01:00
|
|
|
hls_elem = jsondata["request"]["files"]["hls"]["cdns"]["fastly_skyfire"]
|
2019-09-06 22:31:52 +02:00
|
|
|
stream = hlsparse(
|
|
|
|
self.config,
|
|
|
|
self.http.request("get", hls_elem["url"]),
|
|
|
|
hls_elem["url"],
|
|
|
|
output=self.output,
|
|
|
|
)
|
2018-03-19 20:51:38 +01:00
|
|
|
|
|
|
|
if stream:
|
|
|
|
for n in list(stream.keys()):
|
|
|
|
yield stream[n]
|
|
|
|
|
2015-11-15 11:19:12 +01:00
|
|
|
avail_quality = jsondata["request"]["files"]["progressive"]
|
|
|
|
for i in avail_quality:
|
2019-09-06 22:31:52 +02:00
|
|
|
yield HTTP(
|
|
|
|
copy.copy(self.config), i["url"], i["height"], output=self.output
|
|
|
|
)
|
2013-03-10 14:18:39 +01:00
|
|
|
else:
|
2015-09-06 14:19:10 +02:00
|
|
|
yield ServiceError("Can't find any streams.")
|
2015-04-28 23:19:35 +02:00
|
|
|
return
|