mirror of
https://github.com/spaam/svtplay-dl.git
synced 2024-11-24 20:25:41 +01:00
f5eb3c8749
this fixes #190
39 lines
1.3 KiB
Python
39 lines
1.3 KiB
Python
# ex:ts=4:sw=4:sts=4:et
|
|
# -*- tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*-
|
|
from __future__ import absolute_import
|
|
import json
|
|
import re
|
|
import copy
|
|
|
|
from svtplay_dl.service import Service, OpenGraphThumbMixin
|
|
from svtplay_dl.utils import get_http_data
|
|
from svtplay_dl.fetcher.http import HTTP
|
|
from svtplay_dl.log import log
|
|
|
|
class Vimeo(Service, OpenGraphThumbMixin):
|
|
supported_domains = ['vimeo.com']
|
|
|
|
def get(self, options):
|
|
error, data = self.get_urldata()
|
|
if error:
|
|
log.error("Can't get the page")
|
|
return
|
|
|
|
if self.exclude(options):
|
|
return
|
|
|
|
match = re.search('data-config-url="([^"]+)" data-fallback-url', data)
|
|
if not match:
|
|
log.error("Can't find video file for: %s", self.url)
|
|
return
|
|
player_url = match.group(1).replace("&", "&")
|
|
error, player_data = get_http_data(player_url)
|
|
|
|
if player_data:
|
|
jsondata = json.loads(player_data)
|
|
avail_quality = jsondata["request"]["files"]["h264"]
|
|
for i in avail_quality.keys():
|
|
yield HTTP(copy.copy(options), avail_quality[i]["url"], avail_quality[i]["bitrate"])
|
|
else:
|
|
log.error("Can't find any streams.")
|
|
return |