youtube-dl

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

commit 481ef51e2345b1b34b16148eb6e5e58e9fb45cfb
parent 5b995f713bf45e9e373029e1411811dfde855088
Author: Sergey M․ <dstftw@gmail.com>
Date:   Wed, 19 Apr 2017 21:47:03 +0700

[brightcove] PEP 8

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 @@ -277,7 +277,7 @@ class BrightcoveLegacyIE(InfoExtractor): return list(filter(None, [ cls._build_brighcove_url_from_js(custom_bc) for custom_bc in matches])) - return [url for _, url in re.findall( + return [src for _, src in re.findall( r'<iframe[^>]+src=([\'"])((?:https?:)?//link\.brightcove\.com/services/player/(?!\1).+)\1', webpage)] def _real_extract(self, url):