aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/dbtv.py
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2016-08-18 21:30:55 +0700
committerSergey M․ <dstftw@gmail.com>2016-08-18 21:30:55 +0700
commitb0d578ff7b54c521776cf8d1e050dc198bbc26e6 (patch)
tree4719412d70aacb74e76e3adc4eb27ffb5b713455 /youtube_dl/extractor/dbtv.py
parentb0c8f2e9c8946f8aab4be0d1435e504aac0d317f (diff)
downloadyoutube-dl-b0d578ff7b54c521776cf8d1e050dc198bbc26e6.tar.xz
[dbtv] Relax embed regex
Diffstat (limited to 'youtube_dl/extractor/dbtv.py')
-rw-r--r--youtube_dl/extractor/dbtv.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/dbtv.py b/youtube_dl/extractor/dbtv.py
index 73dba5e2a..6d880d43d 100644
--- a/youtube_dl/extractor/dbtv.py
+++ b/youtube_dl/extractor/dbtv.py
@@ -41,7 +41,7 @@ class DBTVIE(InfoExtractor):
@staticmethod
def _extract_urls(webpage):
return [url for _, url in re.findall(
- r'<iframe[^>]+src=(["\'])((?:https?:)?//(?:www\.)?dbtv\.no/lazyplayer/\d+.*?)\1',
+ r'<iframe[^>]+src=(["\'])((?:https?:)?//(?:www\.)?dbtv\.no/(?:lazy)?player/\d+.*?)\1',
webpage)]
def _real_extract(self, url):