Parcourir la source

[brightcove] Remove the namespace from the BrightcoveExperience html object

Jaime Marquínez Ferrándiz il y a 10 ans
Parent
commit
d6f714f321
1 fichiers modifiés avec 2 ajouts et 0 suppressions
  1. 2 0
      youtube_dl/extractor/brightcove.py

+ 2 - 0
youtube_dl/extractor/brightcove.py

@@ -111,6 +111,8 @@ class BrightcoveIE(InfoExtractor):
                             lambda m: m.group(1) + '/>', object_str)
         # Fix up some stupid XML, see https://github.com/rg3/youtube-dl/issues/1608
         object_str = object_str.replace('<--', '<!--')
+        # remove namespace to simplify extraction
+        object_str = re.sub(r'(<object[^>]*)(xmlns=".*?")', r'\1', object_str)
         object_str = fix_xml_ampersands(object_str)
 
         object_doc = xml.etree.ElementTree.fromstring(object_str.encode('utf-8'))