aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/biqle.py
diff options
context:
space:
mode:
authorRemita Amine <remitamine@gmail.com>2019-06-10 14:58:37 +0100
committerRemita Amine <remitamine@gmail.com>2019-06-10 14:58:37 +0100
commitf991dd2bfb5a76685007a696815a080a60dc75dd (patch)
tree2682307fdd2f7f973addcb7cdb81e5df2bd7c7bd /youtube_dl/extractor/biqle.py
parent35c2dd48d9c61015627b00c2081b953fdea03f43 (diff)
downloadyoutube-dl-f991dd2bfb5a76685007a696815a080a60dc75dd.tar.xz
[biqle] add support for new embed domain
Diffstat (limited to 'youtube_dl/extractor/biqle.py')
-rw-r--r--youtube_dl/extractor/biqle.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/biqle.py b/youtube_dl/extractor/biqle.py
index 3707dc97f..c5c374845 100644
--- a/youtube_dl/extractor/biqle.py
+++ b/youtube_dl/extractor/biqle.py
@@ -42,7 +42,7 @@ class BIQLEIE(InfoExtractor):
video_id = self._match_id(url)
webpage = self._download_webpage(url, video_id)
embed_url = self._proto_relative_url(self._search_regex(
- r'<iframe.+?src="((?:https?:)?//daxab\.com/[^"]+)".*?></iframe>',
+ r'<iframe.+?src="((?:https?:)?//(?:(?:daxab\.com|dxb\.to|[^/]+/player)/)[^"]+)".*?></iframe>',
webpage, 'embed url'))
if VKIE.suitable(embed_url):
return self.url_result(embed_url, VKIE.ie_key(), video_id)