1
0
mirror of https://gitlab.com/ytdl-org/youtube-dl.git synced 2025-11-18 00:00:35 -05:00

Merge pull request #4949 from peugeot/sunporno

[sunporno] fix extraction
This commit is contained in:
Sergey M.
2015-02-14 18:32:18 +06:00

View File

@@ -52,7 +52,7 @@ class SunPornoIE(InfoExtractor):
formats = []
quality = qualities(['mp4', 'flv'])
for video_url in re.findall(r'<source src="([^"]+)"', webpage):
for video_url in re.findall(r'<video src="([^"]+)"', webpage):
video_ext = determine_ext(video_url)
formats.append({
'url': video_url,