From 83ab8a79ccc3b6ef143f7d636c0118f7c3e5777b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sergey=20M=E2=80=A4?= Date: Sat, 30 Jan 2016 01:48:54 +0600 Subject: [espn] Improve video id extraction (Closes #8368) --- youtube_dl/extractor/espn.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'youtube_dl/extractor/espn.py') diff --git a/youtube_dl/extractor/espn.py b/youtube_dl/extractor/espn.py index 3762d87..db4b263 100644 --- a/youtube_dl/extractor/espn.py +++ b/youtube_dl/extractor/espn.py @@ -53,8 +53,8 @@ class ESPNIE(InfoExtractor): 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\d+)', + webpage, 'video id', group='id') cms = 'espn' if 'data-source="intl"' in webpage: -- cgit v1.1