1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2025-09-03 08:35:32 +00:00

[extractor] Standardize _live_title

This commit is contained in:
pukkandan
2021-12-15 21:30:46 +05:30
parent 46383212b3
commit 39ca3b5c7f
67 changed files with 68 additions and 94 deletions

View File

@ -44,11 +44,11 @@ class VyboryMosIE(InfoExtractor):
info = self._download_json(
'http://vybory.mos.ru/json/voting_stations/%s/%s.json'
% (compat_str(station_id)[:3], station_id),
station_id, 'Downloading station JSON', fatal=False)
station_id, 'Downloading station JSON', fatal=False) or {}
return {
'id': station_id,
'title': self._live_title(info['name'] if info else station_id),
'title': info.get('name') or station_id,
'description': info.get('address'),
'is_live': True,
'formats': formats,