logo

youtube-dl

[mirror] Download/Watch videos from video hosters
commit: 232eb88bfefa0bc6d9ba8df608de62704dbf217c
parent a95967f8b7b85bcc58c3ff62f09c5c86df8b8634
Author: Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>
Date:   Fri, 12 Jul 2013 14:52:01 +0200

GenericIE: allow to match declaration of the Brightocove parameters that use ' instead of "

Diffstat:

Myoutube_dl/extractor/generic.py2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/youtube_dl/extractor/generic.py b/youtube_dl/extractor/generic.py @@ -120,7 +120,7 @@ class GenericIE(InfoExtractor): self.report_extraction(video_id) # Look for BrigthCove: - m_brightcove = re.search(r'<object.+?class=".*?BrightcoveExperience.*?".+?</object>', webpage, re.DOTALL) + m_brightcove = re.search(r'<object.+?class=([\'"]).*?BrightcoveExperience.*?\1.+?</object>', webpage, re.DOTALL) if m_brightcove is not None: self.to_screen(u'Brightcove video detected.') bc_url = BrightcoveIE._build_brighcove_url(m_brightcove.group())