|
|
@ -311,6 +311,12 @@ class GenericIE(InfoExtractor): |
|
|
|
mobj = re.search(r'<iframe .*?src="(http://mpora\.com/videos/[^"]+)"', webpage) |
|
|
|
if mobj is not None: |
|
|
|
return self.url_result(mobj.group(1), 'Mpora') |
|
|
|
|
|
|
|
# Look for embedded Novamov player |
|
|
|
mobj = re.search( |
|
|
|
r'<iframe[^>]+?src=(["\'])(?P<url>http://(?:(?:embed|www)\.)?novamov\.com/embed\.php.+?)\1', webpage) |
|
|
|
if mobj is not None: |
|
|
|
return self.url_result(mobj.group('url'), 'Novamov') |
|
|
|
|
|
|
|
# Start with something easy: JW Player in SWFObject |
|
|
|
mobj = re.search(r'flashvars: [\'"](?:.*&)?file=(http[^\'"&]*)', webpage) |
|
|
|
xxxxxxxxxx