aboutsummaryrefslogtreecommitdiff
path: root/youtube_dlc/extractor/viki.py
diff options
context:
space:
mode:
authorpukkandan <pukkandan@gmail.com>2021-01-01 17:56:37 +0530
committerpukkandan <pukkandan@gmail.com>2021-01-05 00:02:27 +0530
commit29f7c58aafb25a094e267a8a3fb355e102e42792 (patch)
tree5537f53fb970bc5b29370f97e8f190a6e4dc7d4e /youtube_dlc/extractor/viki.py
parentc2b5f3114ff0f2888af211323ad60505d87fb2fd (diff)
Update to ytdl-2021.01.03
Diffstat (limited to 'youtube_dlc/extractor/viki.py')
-rw-r--r--youtube_dlc/extractor/viki.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/youtube_dlc/extractor/viki.py b/youtube_dlc/extractor/viki.py
index 09da4338d..fd1c305b1 100644
--- a/youtube_dlc/extractor/viki.py
+++ b/youtube_dlc/extractor/viki.py
@@ -63,14 +63,14 @@ class VikiBaseIE(InfoExtractor):
def _call_api(self, path, video_id, note, timestamp=None, post_data=None):
resp = self._download_json(
- self._prepare_call(path, timestamp, post_data), video_id, note, headers={'x-viki-app-ver': '2.2.5.1428709186'}, expected_status=[200, 400, 404])
+ self._prepare_call(path, timestamp, post_data), video_id, note)
error = resp.get('error')
if error:
if error == 'invalid timestamp':
resp = self._download_json(
self._prepare_call(path, int(resp['current_timestamp']), post_data),
- video_id, '%s (retry)' % note, headers={'x-viki-app-ver': '2.2.5.1428709186'}, expected_status=[200, 400, 404])
+ video_id, '%s (retry)' % note)
error = resp.get('error')
if error:
self._raise_error(resp['error'])
@@ -263,7 +263,7 @@ class VikiIE(VikiBaseIE):
# New way to fetch subtitles
new_video = self._download_json(
'https://www.viki.com/api/videos/%s' % video_id, video_id,
- 'Downloading new video JSON to get subtitles', headers={'x-viki-app-ver': '2.2.5.1428709186'}, expected_status=[200, 400, 404])
+ 'Downloading new video JSON to get subtitles', fatal=False)
for sub in new_video.get('streamSubtitles').get('dash'):
subtitles[sub.get('srclang')] = [{
'ext': 'vtt',