1
0
mirror of https://github.com/yt-dlp/yt-dlp synced 2025-12-17 22:55:42 +07:00

[nowvideo] Support more domains

This commit is contained in:
Sergey M․
2014-04-05 16:38:57 +07:00
parent 931055e6cb
commit 7cd3bc5f99
2 changed files with 2 additions and 2 deletions

View File

@@ -519,7 +519,7 @@ def _real_extract(self, url):
# Look for embedded NowVideo player
mobj = re.search(
r'<iframe[^>]+?src=(["\'])(?P<url>http://(?:(?:embed|www)\.)?nowvideo\.(?:ch|sx|eu)/embed\.php.+?)\1', webpage)
r'<iframe[^>]+?src=(["\'])(?P<url>http://(?:(?:embed|www)\.)?nowvideo\.(?:ch|sx|eu|at|ag|co)/embed\.php.+?)\1', webpage)
if mobj is not None:
return self.url_result(mobj.group('url'), 'NowVideo')