diff options
author | Elyse <kevincristian@outlook.com> | 2022-05-15 07:09:14 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-15 05:09:14 -0700 |
commit | 25f0e68f971d1b18492cdf8bf9fd6b097051dd2e (patch) | |
tree | 64c589dccbffc4d83beeebf9d7e289145ba62593 | |
parent | 3358f89361ffd104a427e51b7f5aefd9e55a7057 (diff) | |
download | hypervideo-pre-25f0e68f971d1b18492cdf8bf9fd6b097051dd2e.tar.lz hypervideo-pre-25f0e68f971d1b18492cdf8bf9fd6b097051dd2e.tar.xz hypervideo-pre-25f0e68f971d1b18492cdf8bf9fd6b097051dd2e.zip |
[wat] Fix extraction of multi-language videos and subtitles (#3739)
Closes #982, closes #1683
Authored by: elyse0
-rw-r--r-- | yt_dlp/extractor/wat.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yt_dlp/extractor/wat.py b/yt_dlp/extractor/wat.py index 2ad664890..e6a89adf6 100644 --- a/yt_dlp/extractor/wat.py +++ b/yt_dlp/extractor/wat.py @@ -54,7 +54,7 @@ class WatIE(InfoExtractor): # 'http://www.wat.tv/interface/contentv4s/' + video_id, video_id) video_data = self._download_json( 'https://mediainfo.tf1.fr/mediainfocombo/' + video_id, - video_id, query={'context': 'MYTF1'}) + video_id, query={'context': 'MYTF1', 'pver': '4020003'}) video_info = video_data['media'] error_desc = video_info.get('error_desc') |