diff options
author | Unknown <blackjack4494@web.de> | 2020-12-02 01:44:14 +0100 |
---|---|---|
committer | Unknown <blackjack4494@web.de> | 2020-12-02 01:44:14 +0100 |
commit | 40ec740f7b54c34706c6e844f9ba5a972cee9cbd (patch) | |
tree | e893e545099ea299e5764fbfaa444a1bd4f1305b | |
parent | 866287555176f085a1b7c4586b8e7217211be1cc (diff) | |
download | hypervideo-pre-40ec740f7b54c34706c6e844f9ba5a972cee9cbd.tar.lz hypervideo-pre-40ec740f7b54c34706c6e844f9ba5a972cee9cbd.tar.xz hypervideo-pre-40ec740f7b54c34706c6e844f9ba5a972cee9cbd.zip |
[yt] temporary fix for automatic captions - disable json3
-rw-r--r-- | youtube_dlc/extractor/youtube.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dlc/extractor/youtube.py b/youtube_dlc/extractor/youtube.py index e87692754..e0f211b74 100644 --- a/youtube_dlc/extractor/youtube.py +++ b/youtube_dlc/extractor/youtube.py @@ -506,7 +506,7 @@ class YoutubeIE(YoutubeBaseInfoExtractor): '396': {'acodec': 'none', 'vcodec': 'av01.0.05M.08'}, '397': {'acodec': 'none', 'vcodec': 'av01.0.05M.08'}, } - _SUBTITLE_FORMATS = ('json3', 'srv1', 'srv2', 'srv3', 'ttml', 'vtt') + _SUBTITLE_FORMATS = ('srv1', 'srv2', 'srv3', 'ttml', 'vtt') # TODO 'json3' raising issues with automatic captions _GEO_BYPASS = False |