youtube-dl

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

commit 476e1095fac398b648f953a826ed3b191ce8d5d7
parent 8da1bb04186d4147f89923abc09a9db0fa2a4fec
Author: Sergey M․ <dstftw@gmail.com>
Date:   Tue, 14 Apr 2015 17:48:41 +0600

[brightcove] Improve brightcove experience regex (Closes #5421)

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

diff --git a/youtube_dl/extractor/brightcove.py b/youtube_dl/extractor/brightcove.py @@ -183,7 +183,7 @@ class BrightcoveIE(InfoExtractor): (?: [^>]+?class=[\'"][^>]*?BrightcoveExperience.*?[\'"] | [^>]*?>\s*<param\s+name="movie"\s+value="https?://[^/]*brightcove\.com/ - ).+?</object>''', + ).+?>\s*</object>''', webpage) return [cls._build_brighcove_url(m) for m in matches]