summary refs log tree commit diff
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2015-02-02 23:47:14 +0100
committerPhilipp Hagemeister <phihag@phihag.de>2015-02-02 23:47:14 +0100
commitc1147c05e172f8d8c2b2b8d752eda3f385f1bed1 (patch)
tree513da97719480eff35eeab6ef816fbf38580f55a
parent55898ad2cf4a5cf7628cf921fb5785ed0c7dceff (diff)
downloadyoutube-dl-c1147c05e172f8d8c2b2b8d752eda3f385f1bed1.tar.gz
youtube-dl-c1147c05e172f8d8c2b2b8d752eda3f385f1bed1.tar.xz
youtube-dl-c1147c05e172f8d8c2b2b8d752eda3f385f1bed1.zip
[brightcove] Fix up more generically invalid XML (Fixes #4849)
-rw-r--r--youtube_dl/extractor/brightcove.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/brightcove.py b/youtube_dl/extractor/brightcove.py
index 003152c4e..ea0969d4d 100644
--- a/youtube_dl/extractor/brightcove.py
+++ b/youtube_dl/extractor/brightcove.py
@@ -108,7 +108,7 @@ class BrightcoveIE(InfoExtractor):
         """
 
         # Fix up some stupid HTML, see https://github.com/rg3/youtube-dl/issues/1553
-        object_str = re.sub(r'(<param name="[^"]+" value="[^"]+")>',
+        object_str = re.sub(r'(<param(?:\s+[a-zA-Z0-9_]+="[^"]*")*)>',
                             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('<--', '<!--')