summary refs log tree commit diff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2015-10-04 21:13:13 +0600
committerSergey M․ <dstftw@gmail.com>2015-10-04 21:13:13 +0600
commit0659dfccfea9df3206c476e83a2b090456c25a83 (patch)
treec5691b389f687d695e9c46897f9b6285e7e68981
parent9c544e2537abda1d65e96f2b33a79984f3ab7c10 (diff)
downloadyoutube-dl-0659dfccfea9df3206c476e83a2b090456c25a83.tar.gz
youtube-dl-0659dfccfea9df3206c476e83a2b090456c25a83.tar.xz
youtube-dl-0659dfccfea9df3206c476e83a2b090456c25a83.zip
[pbs] Improve player regex (Closes #7059)
-rw-r--r--youtube_dl/extractor/pbs.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/pbs.py b/youtube_dl/extractor/pbs.py
index 683c81de3..0bca3152b 100644
--- a/youtube_dl/extractor/pbs.py
+++ b/youtube_dl/extractor/pbs.py
@@ -167,7 +167,7 @@ class PBSIE(InfoExtractor):
                 return media_id, presumptive_id, upload_date
 
             url = self._search_regex(
-                r'<iframe\s+[^>]*\s+src=["\']([^\'"]+partnerplayer[^\'"]+)["\']',
+                r'(?s)<iframe[^>]+?(?:[a-z-]+?=["\'].+?["\'][^>]+?)*?\bsrc=["\']([^\'"]+partnerplayer[^\'"]+)["\']',
                 webpage, 'player URL')
             mobj = re.match(self._VALID_URL, url)