mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-04 23:35:04 +00:00
[fc2] Fall back to webpage title if needed
This commit is contained in:
parent
94128d6b0d
commit
23ae281b31
1 changed files with 4 additions and 1 deletions
|
@ -50,10 +50,13 @@ def _real_extract(self, url):
|
||||||
raise ExtractorError('Error code: %s' % info['err_code'][0])
|
raise ExtractorError('Error code: %s' % info['err_code'][0])
|
||||||
|
|
||||||
video_url = info['filepath'][0] + '?mid=' + info['mid'][0]
|
video_url = info['filepath'][0] + '?mid=' + info['mid'][0]
|
||||||
|
title_info = info.get('title')
|
||||||
|
if title_info:
|
||||||
|
title = title_info[0]
|
||||||
|
|
||||||
return {
|
return {
|
||||||
'id': video_id,
|
'id': video_id,
|
||||||
'title': info['title'][0],
|
'title': title,
|
||||||
'url': video_url,
|
'url': video_url,
|
||||||
'ext': 'flv',
|
'ext': 'flv',
|
||||||
'thumbnail': thumbnail,
|
'thumbnail': thumbnail,
|
||||||
|
|
Loading…
Reference in a new issue