aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2013-07-12 14:52:01 +0200
committerJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2013-07-12 14:52:01 +0200
commit232eb88bfefa0bc6d9ba8df608de62704dbf217c (patch)
tree013c774955b389e2186ca671cd9fa898178433d2
parenta95967f8b7b85bcc58c3ff62f09c5c86df8b8634 (diff)
downloadyoutube-dl-232eb88bfefa0bc6d9ba8df608de62704dbf217c.tar.xz
GenericIE: allow to match declaration of the Brightocove parameters that use ' instead of "
-rw-r--r--youtube_dl/extractor/generic.py2
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())