Browse Source

[brightcove] The ‘id’ attribute is not always present in the object tag (fixes #2132)

It looks like the ‘flashId’ parameter is not needed.
totalwebcasting
Jaime Marquínez Ferrándiz 11 years ago
parent
commit
db22af36ec
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      youtube_dl/extractor/brightcove.py

+ 3
- 3
youtube_dl/extractor/brightcove.py View File

@ -86,9 +86,9 @@ class BrightcoveIE(InfoExtractor):
object_doc = xml.etree.ElementTree.fromstring(object_str) object_doc = xml.etree.ElementTree.fromstring(object_str)
assert 'BrightcoveExperience' in object_doc.attrib['class'] assert 'BrightcoveExperience' in object_doc.attrib['class']
params = {'flashID': object_doc.attrib['id'],
'playerID': find_xpath_attr(object_doc, './param', 'name', 'playerID').attrib['value'],
}
params = {
'playerID': find_xpath_attr(object_doc, './param', 'name', 'playerID').attrib['value'],
}
def find_param(name): def find_param(name):
node = find_xpath_attr(object_doc, './param', 'name', name) node = find_xpath_attr(object_doc, './param', 'name', name)
if node is not None: if node is not None:


Loading…
Cancel
Save