diff options
author | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2013-07-12 14:52:01 +0200 |
---|---|---|
committer | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2013-07-12 14:52:01 +0200 |
commit | 232eb88bfefa0bc6d9ba8df608de62704dbf217c (patch) | |
tree | 013c774955b389e2186ca671cd9fa898178433d2 /youtube_dl/extractor/generic.py | |
parent | a95967f8b7b85bcc58c3ff62f09c5c86df8b8634 (diff) |
GenericIE: allow to match declaration of the Brightocove parameters that use ' instead of "
Diffstat (limited to 'youtube_dl/extractor/generic.py')
-rw-r--r-- | youtube_dl/extractor/generic.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/generic.py b/youtube_dl/extractor/generic.py index 33790741f..b633e896c 100644 --- 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()) |