mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-15 04:43:19 +00:00
Fix YP IE
This commit is contained in:
parent
a72b0f2b6f
commit
e711babbd1
|
@ -3729,13 +3729,13 @@ def _real_extract(self, url):
|
||||||
webpage = self._download_webpage(req, video_id)
|
webpage = self._download_webpage(req, video_id)
|
||||||
|
|
||||||
# Get the video title
|
# Get the video title
|
||||||
result = re.search(r'videoTitleArea">(?P<title>.*)</h1>', webpage)
|
result = re.search(r'<h1.*?>(?P<title>.*)</h1>', webpage)
|
||||||
if result is None:
|
if result is None:
|
||||||
raise ExtractorError(u'ERROR: unable to extract video title')
|
raise ExtractorError(u'Unable to extract video title')
|
||||||
video_title = result.group('title').strip()
|
video_title = result.group('title').strip()
|
||||||
|
|
||||||
# Get the video date
|
# Get the video date
|
||||||
result = re.search(r'Date:</b>(?P<date>.*)</li>', webpage)
|
result = re.search(r'Date:</label>(?P<date>.*) </li>', webpage)
|
||||||
if result is None:
|
if result is None:
|
||||||
self._downloader.to_stderr(u'WARNING: unable to extract video date')
|
self._downloader.to_stderr(u'WARNING: unable to extract video date')
|
||||||
upload_date = None
|
upload_date = None
|
||||||
|
@ -3743,9 +3743,9 @@ def _real_extract(self, url):
|
||||||
upload_date = result.group('date').strip()
|
upload_date = result.group('date').strip()
|
||||||
|
|
||||||
# Get the video uploader
|
# Get the video uploader
|
||||||
result = re.search(r'Submitted:</b>(?P<uploader>.*)</li>', webpage)
|
result = re.search(r'Submitted:</label>(?P<uploader>.*)</li>', webpage)
|
||||||
if result is None:
|
if result is None:
|
||||||
self._downloader.to_stderr(u'ERROR: unable to extract uploader')
|
self._downloader.to_stderr(u'WARNING: unable to extract uploader')
|
||||||
video_uploader = None
|
video_uploader = None
|
||||||
else:
|
else:
|
||||||
video_uploader = result.group('uploader').strip()
|
video_uploader = result.group('uploader').strip()
|
||||||
|
|
Loading…
Reference in a new issue