mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-10-31 07:50:11 +01:00
parent
c59de48e2b
commit
02f93ff51b
@ -191,17 +191,25 @@ def _get_thumbnails(self, thumbnail):
|
|||||||
}] if thumbnail else None
|
}] if thumbnail else None
|
||||||
|
|
||||||
def _extract_twitch_m3u8_formats(self, path, video_id, token, signature):
|
def _extract_twitch_m3u8_formats(self, path, video_id, token, signature):
|
||||||
return self._extract_m3u8_formats(
|
formats = self._extract_m3u8_formats(
|
||||||
f'{self._USHER_BASE}/{path}/{video_id}.m3u8', video_id, 'mp4', query={
|
f'{self._USHER_BASE}/{path}/{video_id}.m3u8', video_id, 'mp4', query={
|
||||||
'allow_source': 'true',
|
'allow_source': 'true',
|
||||||
'allow_audio_only': 'true',
|
'allow_audio_only': 'true',
|
||||||
'allow_spectre': 'true',
|
'allow_spectre': 'true',
|
||||||
'p': random.randint(1000000, 10000000),
|
'p': random.randint(1000000, 10000000),
|
||||||
|
'platform': 'web',
|
||||||
'player': 'twitchweb',
|
'player': 'twitchweb',
|
||||||
|
'supported_codecs': 'av1,h265,h264',
|
||||||
'playlist_include_framerate': 'true',
|
'playlist_include_framerate': 'true',
|
||||||
'sig': signature,
|
'sig': signature,
|
||||||
'token': token,
|
'token': token,
|
||||||
})
|
})
|
||||||
|
for fmt in formats:
|
||||||
|
if fmt.get('vcodec') and fmt['vcodec'].startswith('av01'):
|
||||||
|
# mpegts does not yet have proper support for av1
|
||||||
|
fmt['downloader_options'] = {'ffmpeg_args_out': ['-f', 'mp4']}
|
||||||
|
|
||||||
|
return formats
|
||||||
|
|
||||||
|
|
||||||
class TwitchVodIE(TwitchBaseIE):
|
class TwitchVodIE(TwitchBaseIE):
|
||||||
|
Loading…
Reference in New Issue
Block a user