youtube-dl

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

commit d4f8ce6e91aff0ba0a6a4464d5525ba66720ae86
parent b311b0ead22f13f7cb10a3c2802f58e0692addcc
Author: Sergey M․ <dstftw@gmail.com>
Date:   Fri, 30 Jun 2017 21:55:45 +0700

[dplayit] Relax video id regex (closes #13524)

Diffstat:
Myoutube_dl/extractor/dplay.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/youtube_dl/extractor/dplay.py b/youtube_dl/extractor/dplay.py @@ -184,7 +184,7 @@ class DPlayItIE(InfoExtractor): webpage = self._download_webpage(url, display_id) info_url = self._search_regex( - r'url\s*:\s*["\']((?:https?:)?//[^/]+/playback/videoPlaybackInfo/\d+)', + r'url\s*[:=]\s*["\']((?:https?:)?//[^/]+/playback/videoPlaybackInfo/\d+)', webpage, 'video id') title = remove_end(self._og_search_title(webpage), ' | Dplay')