Created
January 26, 2016 18:18
-
-
Save chrisprobst/f3c0c081e187792207b6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import requests | |
import json | |
import re | |
import argparse | |
import random | |
import m3u8 | |
USHER_API = 'http://usher.twitch.tv/api/channel/hls/{channel}.m3u8?player=twitchweb' +\ | |
'&token={token}&sig={sig}&$allow_audio_only=true&allow_source=true' + \ | |
'&type=any&p={random}' | |
TOKEN_API = 'http://api.twitch.tv/api/channels/{channel}/access_token' | |
def get_token_and_signature(channel): | |
url = TOKEN_API.format(channel=channel) | |
r = requests.get(url) | |
txt = r.text | |
data = json.loads(txt) | |
sig = data['sig'] | |
token = data['token'] | |
return token, sig | |
def get_live_stream(channel): | |
token, sig = get_token_and_signature(channel) | |
r = random.randint(0,1E7) | |
url = USHER_API.format(channel=channel, sig=sig, token=token, random=r) | |
r = requests.get(url) | |
m3u8_obj = m3u8.loads(r.text) | |
return m3u8_obj | |
def print_video_urls(m3u8_obj): | |
print("Video URLs (sorted by quality):") | |
for p in m3u8_obj.playlists: | |
si = p.stream_info | |
bandwidth = si.bandwidth/(1024) | |
quality = p.media[0].name | |
resolution = si.resolution if si.resolution else "?" | |
uri = p.uri | |
#print(p.stream_info, p.media, p.uri[1]) | |
txt = "\n{} kbit/s ({}), resolution={}".format(bandwidth, quality, resolution) | |
print(txt) | |
print(len(txt)*"-") | |
print(uri) | |
if __name__=="__main__": | |
parser = argparse.ArgumentParser('get video url of twitch channel') | |
parser.add_argument('channel_name') | |
args = parser.parse_args() | |
m3u8_obj = get_live_stream(args.channel_name) | |
print_video_urls(m3u8_obj) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment