diff options
author | Jacob Truman <jacob.truman@gmail.com> | 2023-01-06 11:44:35 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-07 00:14:35 +0530 |
commit | c3366fdfd000a25fd405737b75b47324a6e3eca5 (patch) | |
tree | 2ce34948c782021562c6e4b1ecf3186859d0f46c | |
parent | 5be214abed6d35a5337a806c74a5883a58d6934e (diff) | |
download | hypervideo-pre-c3366fdfd000a25fd405737b75b47324a6e3eca5.tar.lz hypervideo-pre-c3366fdfd000a25fd405737b75b47324a6e3eca5.tar.xz hypervideo-pre-c3366fdfd000a25fd405737b75b47324a6e3eca5.zip |
[extractor/nbc] Update graphql query (#5952)
Closes #5918
Authored by: jacobtruman
-rw-r--r-- | yt_dlp/extractor/nbc.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/yt_dlp/extractor/nbc.py b/yt_dlp/extractor/nbc.py index 1ea6355b5..00c592cc3 100644 --- a/yt_dlp/extractor/nbc.py +++ b/yt_dlp/extractor/nbc.py @@ -136,6 +136,7 @@ class NBCIE(ThePlatformIE): # XXX: Do not subclass from concrete IE query = { 'mbr': 'true', 'manifest': 'm3u', + 'switch': 'HLSServiceSecure', } video_id = video_data['mpxGuid'] tp_path = 'NnzsPC/media/guid/%s/%s' % (video_data.get('mpxAccountId') or '2410887629', video_id) |