From: Sergey M․ Date: Sun, 12 May 2019 17:13:00 +0000 (+0700) Subject: [tele5] Improve video id extraction X-Git-Url: http://git.bitcoin.ninja/?a=commitdiff_plain;h=a277dd33ebc7b3a3d4a7cf603ccdbe2d9ec5d73b;p=youtube-dl [tele5] Improve video id extraction --- diff --git a/youtube_dl/extractor/tele5.py b/youtube_dl/extractor/tele5.py index 0b346d7be..33a72083b 100644 --- a/youtube_dl/extractor/tele5.py +++ b/youtube_dl/extractor/tele5.py @@ -48,8 +48,9 @@ class Tele5IE(InfoExtractor): display_id = self._match_id(url) webpage = self._download_webpage(url, display_id) video_id = self._html_search_regex( - r'id\s*=\s*["\']video-player["\'][^>]+data-id\s*=\s*["\'](\d+)', - webpage, 'video id') + (r'id\s*=\s*["\']video-player["\'][^>]+data-id\s*=\s*["\'](\d+)', + r'\s+id\s*=\s*["\']player_(\d{6,})', + r'\bdata-id\s*=\s*["\'](\d{6,})'), webpage, 'video id') return self.url_result( 'https://api.nexx.cloud/v3/759/videos/byid/%s' % video_id,