Browse Source

[biqle] add support for new embed domain

master
Remita Amine 5 years ago
parent
commit
f991dd2bfb
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      youtube_dl/extractor/biqle.py

+ 1
- 1
youtube_dl/extractor/biqle.py View File

@ -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)


Loading…
Cancel
Save