[afreecatv] Fix title extraction

This commit is contained in:
Tithen-Firion 2017-04-27 23:00:15 +02:00 committed by Sergey M
parent c12b4b80f8
commit 6b4ddd336c
1 changed files with 1 additions and 2 deletions

View File

@ -207,11 +207,10 @@ class AfreecaTVIE(InfoExtractor):
file_url, video_id, 'mp4', entry_protocol='m3u8_native',
m3u8_id='hls',
note='Downloading part %d m3u8 information' % file_num)
title = title if one else '%s (part %d)' % (title, file_num)
file_info = common_entry.copy()
file_info.update({
'id': format_id,
'title': title,
'title': title if one else '%s (part %d)' % (title, file_num),
'upload_date': upload_date,
'duration': file_duration,
'formats': formats,