youtube-dl

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

commit d0087d4ff2a09dff2b4e34e325d58c369a3095aa
parent cc5ada6f4c915c94b5439c31fb498b755f58e283
Author: Sergey M․ <dstftw@gmail.com>
Date:   Tue, 27 May 2014 18:46:30 +0700

[nuvid] Fix video URL extraction

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

diff --git a/youtube_dl/extractor/nuvid.py b/youtube_dl/extractor/nuvid.py @@ -30,7 +30,7 @@ class NuvidIE(InfoExtractor): webpage, 'title').strip() url_end = self._html_search_regex( - r'href="(/mp4/[^"]+)"[^>]*data-link_type="mp4"', + r'href="(/[^"]+)"[^>]*data-link_type="mp4"', webpage, 'video_url') video_url = 'http://m.nuvid.com' + url_end