youtube-dl

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

commit d156a1d981b2773e1c35c9eb7d9b9a3bbcea7c96
parent 987493aef37cce273a10ddfbe540a41a4c6a67cd
Author: Sergey M․ <dstftw@gmail.com>
Date:   Sun, 11 Jan 2015 15:25:29 +0600

[xboxclips] Fix extraction

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

diff --git a/youtube_dl/extractor/xboxclips.py b/youtube_dl/extractor/xboxclips.py @@ -30,7 +30,7 @@ class XboxClipsIE(InfoExtractor): webpage = self._download_webpage(url, video_id) video_url = self._html_search_regex( - r'>(?:Link|Download): <a href="([^"]+)">', webpage, 'video URL') + r'>(?:Link|Download): <a[^>]+href="([^"]+)"', webpage, 'video URL') title = self._html_search_regex( r'<title>XboxClips \| ([^<]+)</title>', webpage, 'title') upload_date = unified_strdate(self._html_search_regex(