1
0
mirror of https://github.com/spaam/svtplay-dl.git synced 2024-11-24 20:25:41 +01:00
svtplay-dl/lib/svtplay_dl/service/vimeo.py

38 lines
1.2 KiB
Python
Raw Normal View History

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
import json
2013-11-14 22:56:32 +01:00
import re
2014-06-07 20:43:40 +02:00
import copy
2014-01-26 01:52:11 +01:00
from svtplay_dl.service import Service, OpenGraphThumbMixin
2014-04-21 17:09:03 +02:00
from svtplay_dl.fetcher.http import HTTP
from svtplay_dl.error import ServiceError
2013-03-10 14:18:39 +01:00
2015-09-15 20:10:32 +02:00
2014-01-26 01:52:11 +01:00
class Vimeo(Service, OpenGraphThumbMixin):
supported_domains = ['vimeo.com']
2013-03-10 14:18:39 +01:00
def get(self):
2015-08-30 11:27:31 +02:00
data = self.get_urldata()
2016-05-14 22:54:30 +02:00
if self.exclude():
2015-09-06 23:04:48 +02:00
yield ServiceError("Excluding video")
return
2014-12-08 23:07:02 +01:00
match = re.search('data-config-url="([^"]+)" data-fallback-url', data)
2013-11-14 22:56:32 +01:00
if not match:
yield ServiceError("Can't find video file for: %s" % self.url)
2014-10-06 23:21:43 +02:00
return
2013-11-14 22:56:32 +01:00
player_url = match.group(1).replace("&", "&")
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
if player_data:
jsondata = json.loads(player_data)
avail_quality = jsondata["request"]["files"]["progressive"]
for i in avail_quality:
yield HTTP(copy.copy(self.options), i["url"], i["height"])
2013-03-10 14:18:39 +01:00
else:
yield ServiceError("Can't find any streams.")
return