youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit d253df2f65b15d1e3bb5e9703b05d98532337c9b
parent e8c6afc16877a6b975895bf236c8cdaff01733cd
Author: Sergey M․ <dstftw@gmail.com>
Date:   Mon, 11 Jun 2018 02:40:17 +0700

[wimp] Fix Youtube embeds extraction

Diffstat:
Myoutube_dl/extractor/wimp.py | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/youtube_dl/extractor/wimp.py b/youtube_dl/extractor/wimp.py @@ -36,7 +36,8 @@ class WimpIE(InfoExtractor): webpage = self._download_webpage(url, video_id) youtube_id = self._search_regex( - r"videoId\s*:\s*[\"']([0-9A-Za-z_-]{11})[\"']", + (r"videoId\s*:\s*[\"']([0-9A-Za-z_-]{11})[\"']", + r'data-id=["\']([0-9A-Za-z_-]{11})'), webpage, 'video URL', default=None) if youtube_id: return {