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
|
2013-11-12 20:46:08 +01:00
|
|
|
|
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
|
2015-09-06 14:19:10 +02:00
|
|
|
from svtplay_dl.error import ServiceError
|
2013-03-10 14:18:39 +01:00
|
|
|
|
2014-01-26 01:52:11 +01:00
|
|
|
class Vimeo(Service, OpenGraphThumbMixin):
|
2014-01-01 14:57:17 +01:00
|
|
|
supported_domains = ['vimeo.com']
|
2013-03-10 14:18:39 +01:00
|
|
|
|
2014-01-06 23:14:06 +01:00
|
|
|
def get(self, options):
|
2015-08-30 11:27:31 +02:00
|
|
|
data = self.get_urldata()
|
2014-12-22 17:41:40 +01:00
|
|
|
|
|
|
|
if self.exclude(options):
|
2015-09-06 23:04:48 +02:00
|
|
|
yield ServiceError("Excluding video")
|
2014-12-22 17:41:40 +01:00
|
|
|
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:
|
2015-09-06 14:19:10 +02:00
|
|
|
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-08-31 19:45:15 +02:00
|
|
|
player_data = self.http.request("get", player_url).content
|
2013-03-10 14:18:39 +01:00
|
|
|
|
2013-11-12 20:46:08 +01:00
|
|
|
if player_data:
|
|
|
|
jsondata = json.loads(player_data)
|
|
|
|
avail_quality = jsondata["request"]["files"]["h264"]
|
2014-04-21 17:09:03 +02:00
|
|
|
for i in avail_quality.keys():
|
2014-06-07 20:43:40 +02:00
|
|
|
yield HTTP(copy.copy(options), avail_quality[i]["url"], avail_quality[i]["bitrate"])
|
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
|