Last active
May 2, 2024 02:37
-
-
Save aidilfbk/9b8ba14ab91bf8a0a1b33a4aeb904ad5 to your computer and use it in GitHub Desktop.
Requesting special low latency m3u8 playlist file
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 = 'https://usher.ttvnw.net/api/channel/hls/{channel}.m3u8?player=twitchweb' +\ | |
'&token={token}&sig={sig}&allow_audio_only=true&allow_source=true&fast_bread=true' + \ | |
'&type=any' | |
TOKEN_API = 'https://api.twitch.tv/api/channels/{channel}/access_token?client_id=jzkbprff40iqj646a697cyrvl0zt2m6' | |
def get_token_and_signature(channel): | |
url = TOKEN_API.format(channel=channel) | |
r = requests.get(url) | |
data = json.loads(r.text) | |
sig = data['sig'] | |
token = data['token'] | |
return token, sig | |
def get_live_stream(channel): | |
token, sig = get_token_and_signature(channel) | |
url = USHER_API.format(channel=channel, sig=sig, token=token) | |
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