[generic] Be more relaxed when looking for aparat embeds (Fixes #2784)

This commit is contained in:
Philipp Hagemeister 2014-04-21 12:37:41 +02:00
parent 621f33c9d0
commit 48099643cc
1 changed files with 1 additions and 1 deletions

View File

@ -531,7 +531,7 @@ class GenericIE(InfoExtractor):
return OoyalaIE._build_url_result(mobj.group('ec'))
# Look for Aparat videos
mobj = re.search(r'<iframe src="(http://www\.aparat\.com/video/[^"]+)"', webpage)
mobj = re.search(r'<iframe .*?src="(http://www\.aparat\.com/video/[^"]+)"', webpage)
if mobj is not None:
return self.url_result(mobj.group(1), 'Aparat')