Browse Source

[twitch] fix video comments URL(#18593)(closes #15828)

Remita Amine 5 years ago
parent
commit
ce112a8c19
1 changed files with 2 additions and 3 deletions
  1. 2 3
      youtube_dl/extractor/twitch.py

+ 2 - 3
youtube_dl/extractor/twitch.py

@@ -344,9 +344,8 @@ class TwitchVodIE(TwitchItemBaseIE):
             info['subtitles'] = {
             info['subtitles'] = {
                 'rechat': [{
                 'rechat': [{
                     'url': update_url_query(
                     'url': update_url_query(
-                        'https://rechat.twitch.tv/rechat-messages', {
-                            'video_id': 'v%s' % item_id,
-                            'start': info['timestamp'],
+                        'https://api.twitch.tv/v5/videos/%s/comments' % item_id, {
+                            'client_id': self._CLIENT_ID,
                         }),
                         }),
                     'ext': 'json',
                     'ext': 'json',
                 }],
                 }],