From: MobiDotS Date: Wed, 16 Oct 2019 15:13:35 +0000 (-0500) Subject: [twitch] update VOD URL matching (closes #22395) (#22727) X-Git-Url: http://git.cielonegro.org/gitweb.cgi?a=commitdiff_plain;h=bc48773ed4c068adfe67078714814035660e5ca4;p=youtube-dl.git [twitch] update VOD URL matching (closes #22395) (#22727) --- diff --git a/youtube_dl/extractor/twitch.py b/youtube_dl/extractor/twitch.py index 0500e33a6..ca7676fe2 100644 --- a/youtube_dl/extractor/twitch.py +++ b/youtube_dl/extractor/twitch.py @@ -248,7 +248,7 @@ class TwitchVodIE(TwitchItemBaseIE): https?:// (?: (?:(?:www|go|m)\.)?twitch\.tv/(?:[^/]+/v(?:ideo)?|videos)/| - player\.twitch\.tv/\?.*?\bvideo=v + player\.twitch\.tv/\?.*?\bvideo=v? ) (?P\d+) ''' @@ -306,6 +306,9 @@ class TwitchVodIE(TwitchItemBaseIE): }, { 'url': 'https://www.twitch.tv/northernlion/video/291940395', 'only_matching': True, + }, { + 'url': 'https://player.twitch.tv/?video=480452374', + 'only_matching': True, }] def _real_extract(self, url):