1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-09-05 18:39:37 +02:00

[espn] Improve video id extraction (Closes #8368)

This commit is contained in:
Sergey M․ 2016-01-30 01:48:54 +06:00
parent 350cf045d8
commit 83ab8a79cc

View File

@ -53,8 +53,8 @@ def _real_extract(self, url):
webpage = self._download_webpage(url, video_id)
video_id = self._search_regex(
r'class="video-play-button"[^>]+data-id="(\d+)',
webpage, 'video id')
r'class=(["\']).*?video-play-button.*?\1[^>]+data-id=["\'](?P<id>\d+)',
webpage, 'video id', group='id')
cms = 'espn'
if 'data-source="intl"' in webpage: