Merge pull request #5056 from logon84/master
Eporner Fix (Closes #5050)
This commit is contained in:
commit
c8c34ccb20
1 changed files with 2 additions and 4 deletions
|
@ -35,10 +35,8 @@ 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(
|
|
||||||
r'<script type="text/javascript" src="/config5/%s/([a-f\d]+)/">' % video_id,
|
redirect_url = 'http://www.eporner.com/config5/%s/%s' % (video_id, display_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 a new issue