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
|
2014-12-08 23:07:02 +01:00
|
|
|
from svtplay_dl.utils import get_http_data
|
2014-02-05 20:37:50 +01:00
|
|
|
from svtplay_dl.log import log
|
2014-04-21 18:26:26 +02:00
|
|
|
from svtplay_dl.fetcher.rtmp import RTMP
|
|
|
|
from svtplay_dl.fetcher.http import HTTP
|
2014-02-05 20:37:50 +01:00
|
|
|
|
|
|
|
class Bambuser(Service, OpenGraphThumbMixin):
|
|
|
|
supported_domains = ["bambuser.com"]
|
|
|
|
|
|
|
|
def get(self, options):
|
|
|
|
match = re.search(r"v/(\d+)", self.url)
|
|
|
|
if not match:
|
|
|
|
log.error("Can't find video id in url")
|
2014-10-06 23:21:43 +02:00
|
|
|
return
|
2014-02-05 20:37:50 +01:00
|
|
|
json_url = "http://player-c.api.bambuser.com/getVideo.json?api_key=005f64509e19a868399060af746a00aa&vid=%s" % match.group(1)
|
2014-12-08 23:07:02 +01:00
|
|
|
error, data = get_http_data(json_url)
|
|
|
|
if error:
|
|
|
|
log.error("Can't download video info")
|
2014-11-25 23:20:14 +01:00
|
|
|
return
|
|
|
|
|
2014-02-05 20:37:50 +01:00
|
|
|
info = json.loads(data)["result"]
|
|
|
|
video = info["url"]
|
|
|
|
if video[:4] == "rtmp":
|
|
|
|
playpath = info["id"][len(info["id"])-36:]
|
|
|
|
options.other = "-y %s" % playpath
|
|
|
|
if info["type"] == "live":
|
|
|
|
options.live = True
|
2014-06-07 20:43:40 +02:00
|
|
|
yield RTMP(copy.copy(options), video, "0")
|
2014-02-05 20:37:50 +01:00
|
|
|
else:
|
2014-06-07 20:43:40 +02:00
|
|
|
yield HTTP(copy.copy(options), video, "0")
|
2014-02-05 20:37:50 +01:00
|
|
|
|