1
0
mirror of https://github.com/l1ving/youtube-dl synced 2025-03-10 08:57:15 +08:00

[televizeseznam] extract description from perex

This commit is contained in:
Petr Vaněk 2019-07-17 21:26:49 +02:00 committed by Petr Vaněk
parent 8940aa036b
commit bd7328bbd7

View File

@ -28,6 +28,7 @@ class TelevizeSeznamIE(InfoExtractor):
'info_dict': {
'id': 'buh-57953890',
'title': 'Bůh',
'description': 'Trenér Hrouzek je plný rozporů. Na pomoc si povolá i toho nejvyššího. Kdo to ale je? Pomůže mu vyřešit několik dilemat, která se mu v poslední době v životě nahromadila?',
'ext': 'mp4',
}
}
@ -81,5 +82,6 @@ class TelevizeSeznamIE(InfoExtractor):
return {
'id': video_id,
'title': data['episode'].get('name'),
'description': data['episode'].get('perex'),
'formats': formats
}