Merge pull request #6467 from vijayanandnandam/master

fixing xhamster file extraction
This commit is contained in:
Sergey M. 2015-08-05 20:21:19 +06:00
commit defce60385
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ class XHamsterIE(InfoExtractor):
def _real_extract(self, url):
def extract_video_url(webpage):
mp4 = re.search(r'<video\s+.*?file="([^"]+)".*?>', webpage)
mp4 = re.search(r'file:\s+\'([^\']+)\'', webpage)
if mp4 is None:
raise ExtractorError('Unable to extract media URL')
else: