mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-07 20:30:41 -05: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
1 changed files with 1 additions and 4 deletions
|
@ -35,10 +35,7 @@ def _real_extract(self, url):
|
||||||
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 a new issue