1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-06-29 20:51:10 +02:00

[arte.tv:+7] Improve title extraction (Closes #3995)

This commit is contained in:
Sergey M․ 2014-10-21 20:08:20 +07:00
parent d24a2b20b4
commit 74214d35c5

View File

@ -91,9 +91,14 @@ def _extract_from_json_url(self, json_url, video_id, lang):
if not upload_date_str:
upload_date_str = player_info.get('VDA', '').split(' ')[0]
title = player_info['VTI'].strip()
subtitle = player_info.get('VSU', '').strip()
if subtitle:
title += ' - %s' % subtitle
info_dict = {
'id': player_info['VID'],
'title': player_info['VTI'],
'title': title,
'description': player_info.get('VDE'),
'upload_date': unified_strdate(upload_date_str),
'thumbnail': player_info.get('programImage') or player_info.get('VTU', {}).get('IUR'),