mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-14 17:07:53 +00:00
[twitcasting] Throw proper error for login-only streams (#2290)
Closes #2289 Authored by: Lesmiscore
This commit is contained in:
parent
e04938ab88
commit
fabb27fcea
1 changed files with 7 additions and 1 deletions
|
@ -14,6 +14,7 @@ from ..utils import (
|
||||||
parse_duration,
|
parse_duration,
|
||||||
qualities,
|
qualities,
|
||||||
str_to_int,
|
str_to_int,
|
||||||
|
traverse_obj,
|
||||||
try_get,
|
try_get,
|
||||||
unified_timestamp,
|
unified_timestamp,
|
||||||
urlencode_postdata,
|
urlencode_postdata,
|
||||||
|
@ -96,12 +97,17 @@ class TwitCastingIE(InfoExtractor):
|
||||||
'Downloading live info', fatal=False)
|
'Downloading live info', fatal=False)
|
||||||
|
|
||||||
is_live = 'data-status="online"' in webpage
|
is_live = 'data-status="online"' in webpage
|
||||||
|
|
||||||
|
if not traverse_obj(stream_server_data, 'llfmp4') and is_live:
|
||||||
|
raise ExtractorError('You must be logged in to watch.', expected=True)
|
||||||
|
|
||||||
formats = []
|
formats = []
|
||||||
if is_live and not m3u8_url:
|
if is_live and not m3u8_url:
|
||||||
m3u8_url = 'https://twitcasting.tv/%s/metastream.m3u8' % uploader_id
|
m3u8_url = 'https://twitcasting.tv/%s/metastream.m3u8' % uploader_id
|
||||||
if is_live and has_websockets and stream_server_data:
|
if is_live and has_websockets and stream_server_data:
|
||||||
qq = qualities(['base', 'mobilesource', 'main'])
|
qq = qualities(['base', 'mobilesource', 'main'])
|
||||||
for mode, ws_url in stream_server_data['llfmp4']['streams'].items():
|
streams = traverse_obj(stream_server_data, ('llfmp4', 'streams')) or {}
|
||||||
|
for mode, ws_url in streams.items():
|
||||||
formats.append({
|
formats.append({
|
||||||
'url': ws_url,
|
'url': ws_url,
|
||||||
'format_id': 'ws-%s' % mode,
|
'format_id': 'ws-%s' % mode,
|
||||||
|
|
Loading…
Reference in a new issue