diff options
author | Lesmiscore <nao20010128@gmail.com> | 2022-04-28 01:59:45 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-28 01:59:45 +0900 |
commit | 997378f9df7ca25a370e13b265205962e986373b (patch) | |
tree | 56f9e94de89ad317612e4051340808b397572121 /yt_dlp/extractor/twitcasting.py | |
parent | 83bfb5e2907ffb00fd54de0720650f5ae7ba03dd (diff) | |
download | hypervideo-pre-997378f9df7ca25a370e13b265205962e986373b.tar.lz hypervideo-pre-997378f9df7ca25a370e13b265205962e986373b.tar.xz hypervideo-pre-997378f9df7ca25a370e13b265205962e986373b.zip |
[twitcasting] Pass headers for each formats (#3568)
Authored by: Lesmiscore
Diffstat (limited to 'yt_dlp/extractor/twitcasting.py')
-rw-r--r-- | yt_dlp/extractor/twitcasting.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/yt_dlp/extractor/twitcasting.py b/yt_dlp/extractor/twitcasting.py index 07565383a..0dbb97a36 100644 --- a/yt_dlp/extractor/twitcasting.py +++ b/yt_dlp/extractor/twitcasting.py @@ -187,6 +187,7 @@ class TwitCastingIE(InfoExtractor): infodict = { # No problem here since there's only one manifest 'formats': formats, + 'http_headers': self._M3U8_HEADERS, } else: infodict = { |