1
0
mirror of https://github.com/spaam/svtplay-dl.git synced 2024-11-24 12:15:40 +01:00
svtplay-dl/lib/svtplay_dl/service/bambuser.py

36 lines
1.2 KiB
Python
Raw Normal View History

2014-02-05 20:37:50 +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 re
import json
2014-06-07 20:43:40 +02:00
import copy
2014-02-05 20:37:50 +01:00
from svtplay_dl.service import Service, OpenGraphThumbMixin
from svtplay_dl.error import ServiceError
from svtplay_dl.fetcher.rtmp import RTMP
from svtplay_dl.fetcher.http import HTTP
2014-02-05 20:37:50 +01:00
2015-09-15 20:10:32 +02:00
2014-02-05 20:37:50 +01:00
class Bambuser(Service, OpenGraphThumbMixin):
supported_domains = ["bambuser.com"]
def get(self):
2014-02-05 20:37:50 +01:00
match = re.search(r"v/(\d+)", self.url)
if not match:
yield ServiceError("Can't find video id in url")
2014-10-06 23:21:43 +02:00
return
json_url = "http://player-c.api.bambuser.com/getVideo.json?api_key=005f64509e19a868399060af746a00aa&vid={0}".format(match.group(1))
data = self.http.request("get", json_url).text
2014-11-25 23:20:14 +01:00
2014-02-05 20:37:50 +01:00
info = json.loads(data)["result"]
video = info["url"]
if video[:4] == "rtmp":
2018-01-30 20:11:37 +01:00
playpath = info["id"][len(info["id"]) - 36:]
2018-05-08 22:46:11 +02:00
other = "-y {0}".format(playpath)
2014-02-05 20:37:50 +01:00
if info["type"] == "live":
2018-05-08 22:46:11 +02:00
self.config.set("live", True)
yield RTMP(copy.copy(self.config), video, "0", other=other)
2014-02-05 20:37:50 +01:00
else:
2018-05-08 22:46:11 +02:00
yield HTTP(copy.copy(self.config), video, "0")