mirror of
https://github.com/spaam/svtplay-dl.git
synced 2024-11-24 20:25:41 +01:00
115e795835
Does not work reliably (downloading SVTPlay videos with HDS may work if you're lucky).
43 lines
1.9 KiB
Python
43 lines
1.9 KiB
Python
class Kanal9():
|
|
def handle(self, url):
|
|
return ("kanal9play.se" in url) or ("kanal5.se" in url)
|
|
|
|
def get(self, options, url):
|
|
data = get_http_data(url)
|
|
match = re.search("@videoPlayer\" value=\"(.*)\"", data)
|
|
if not match:
|
|
match = re.search("videoId=(\d+)&player", data)
|
|
if not match:
|
|
log.error("Can't find video file")
|
|
sys.exit(2)
|
|
try:
|
|
from pyamf import remoting
|
|
except ImportError:
|
|
log.error("You need to install pyamf to download content from kanal5 and kanal9")
|
|
log.error("In debian the package is called python-pyamf")
|
|
sys.exit(2)
|
|
|
|
player_id = 811317479001
|
|
publisher_id = 22710239001
|
|
const = "9f79dd85c3703b8674de883265d8c9e606360c2e"
|
|
env = remoting.Envelope(amfVersion=3)
|
|
env.bodies.append(("/1", remoting.Request(target="com.brightcove.player.runtime.PlayerMediaFacade.findMediaById", body=[const, player_id, match.group(1), publisher_id], envelope=env)))
|
|
env = str(remoting.encode(env).read())
|
|
url = "http://c.brightcove.com/services/messagebroker/amf?playerKey=AQ~~,AAAABUmivxk~,SnCsFJuhbr0vfwrPJJSL03znlhz-e9bk"
|
|
header = "application/x-amf"
|
|
data = get_http_data(url, "POST", header, env)
|
|
streams = {}
|
|
|
|
for i in remoting.decode(data).bodies[0][1].body['renditions']:
|
|
stream = {}
|
|
stream["uri"] = i["defaultURL"]
|
|
streams[i["encodingRate"]] = stream
|
|
|
|
test = select_quality(options, streams)
|
|
|
|
filename = test["uri"]
|
|
match = re.search("(rtmp[e]{0,1}://.*)\&(.*)$", filename)
|
|
options.other = "-W %s -y %s " % ("http://admin.brightcove.com/viewer/us1.25.04.01.2011-05-24182704/connection/ExternalConnection_2.swf", match.group(2))
|
|
download_rtmp(options, match.group(1))
|
|
|