youtube-dl

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

commit 823fcda12a9263c8f058be2580e675eaaaf6fa7e
parent f2413e67939cb833424f2036cba627bdb164abfb
Author: Ricardo Garcia <sarbalap+freshmeat@gmail.com>
Date:   Tue, 13 Jul 2010 18:22:34 +0200

Improve swf player URL detection for RTMP (fixes issue #144)

Diffstat:
Myoutube-dl | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/youtube-dl b/youtube-dl @@ -847,7 +847,7 @@ class YoutubeIE(InfoExtractor): return # Attempt to extract SWF player URL - mobj = re.search(r'swfConfig.*"(http://.*?watch-.*?\.swf)"', video_webpage) + mobj = re.search(r'swfConfig.*"(http://.*?watch.*?-.*?\.swf)"', video_webpage) if mobj is not None: player_url = mobj.group(1) else: