mirror of
https://codeberg.org/polarisfm/youtube-dl
synced 2024-11-04 17:34:32 +01:00
Update eporner.py
Updated to work. Old version shows an error about being unable to extract "redirect_code"
This commit is contained in:
parent
41b264e77c
commit
59c7cbd482
@ -35,10 +35,7 @@ class EpornerIE(InfoExtractor):
|
|||||||
title = self._html_search_regex(
|
title = self._html_search_regex(
|
||||||
r'<title>(.*?) - EPORNER', webpage, 'title')
|
r'<title>(.*?) - EPORNER', webpage, 'title')
|
||||||
|
|
||||||
redirect_code = self._html_search_regex(
|
redirect_url = 'http://www.eporner.com/config5/%s/%s' % (video_id, display_id)
|
||||||
r'<script type="text/javascript" src="/config5/%s/([a-f\d]+)/">' % video_id,
|
|
||||||
webpage, 'redirect_code')
|
|
||||||
redirect_url = 'http://www.eporner.com/config5/%s/%s' % (video_id, redirect_code)
|
|
||||||
player_code = self._download_webpage(
|
player_code = self._download_webpage(
|
||||||
redirect_url, display_id, note='Downloading player config')
|
redirect_url, display_id, note='Downloading player config')
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user