diff options
author | miseran <miseran@users.noreply.github.com> | 2022-05-27 18:29:19 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-27 09:29:19 -0700 |
commit | 520876fa09daa62301d602537407b0cfce6c55a1 (patch) | |
tree | a202840ac9482eedd39cd6d4f9826cda678aae2b | |
parent | 0bf9dc1e355ed4c3fc0ad0fd2b9dfcd2150a2b02 (diff) | |
download | hypervideo-pre-520876fa09daa62301d602537407b0cfce6c55a1.tar.lz hypervideo-pre-520876fa09daa62301d602537407b0cfce6c55a1.tar.xz hypervideo-pre-520876fa09daa62301d602537407b0cfce6c55a1.zip |
[extractor/zattoo] Fix live streams (#3812)
Authored by: miseran
-rw-r--r-- | yt_dlp/extractor/zattoo.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yt_dlp/extractor/zattoo.py b/yt_dlp/extractor/zattoo.py index 16f827a7e..2a7e85472 100644 --- a/yt_dlp/extractor/zattoo.py +++ b/yt_dlp/extractor/zattoo.py @@ -220,7 +220,7 @@ class ZattooPlatformBaseIE(InfoExtractor): 'id': channel_name, 'title': channel_name, 'is_live': True, - 'format': formats, + 'formats': formats, 'subtitles': subtitles } |