2024-06-11 18:09:58 -05:00
|
|
|
|
import urllib.parse
|
|
|
|
|
|
2014-02-10 11:20:41 -06:00
|
|
|
|
from .common import InfoExtractor
|
2016-04-09 16:02:35 -05:00
|
|
|
|
from ..utils import (
|
2025-05-16 18:16:03 -05:00
|
|
|
|
determine_ext,
|
2016-04-09 16:02:35 -05:00
|
|
|
|
int_or_none,
|
2025-05-16 18:16:03 -05:00
|
|
|
|
join_nonempty,
|
|
|
|
|
mimetype2ext,
|
|
|
|
|
parse_qs,
|
2016-04-09 16:02:35 -05:00
|
|
|
|
unified_strdate,
|
2018-07-21 07:08:28 -05:00
|
|
|
|
url_or_none,
|
2016-04-09 16:02:35 -05:00
|
|
|
|
)
|
2025-05-16 18:16:03 -05:00
|
|
|
|
from ..utils.traversal import traverse_obj
|
2014-02-10 11:20:41 -06:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class FirstTVIE(InfoExtractor):
|
2015-02-13 14:04:28 -06:00
|
|
|
|
IE_NAME = '1tv'
|
|
|
|
|
IE_DESC = 'Первый канал'
|
2025-01-25 15:21:45 -06:00
|
|
|
|
_VALID_URL = r'https?://(?:www\.)?(?:sport)?1tv\.ru/(?:[^/?#]+/)+(?P<id>[^/?#]+)'
|
2014-02-10 11:20:41 -06:00
|
|
|
|
|
2015-02-13 14:04:28 -06:00
|
|
|
|
_TESTS = [{
|
2025-05-16 18:16:03 -05:00
|
|
|
|
# single format; has item.id
|
|
|
|
|
'url': 'https://www.1tv.ru/shows/naedine-so-vsemi/vypuski/gost-lyudmila-senchina-naedine-so-vsemi-vypusk-ot-12-02-2015',
|
|
|
|
|
'md5': '8011ae8e88ff4150107ab9c5a8f5b659',
|
2014-02-10 11:20:41 -06:00
|
|
|
|
'info_dict': {
|
2016-08-21 11:55:47 -05:00
|
|
|
|
'id': '40049',
|
2014-02-10 11:20:41 -06:00
|
|
|
|
'ext': 'mp4',
|
2016-12-04 10:20:14 -06:00
|
|
|
|
'title': 'Гость Людмила Сенчина. Наедине со всеми. Выпуск от 12.02.2015',
|
2025-05-16 18:16:03 -05:00
|
|
|
|
'thumbnail': r're:https?://.+/.+\.jpg',
|
2016-04-09 16:02:35 -05:00
|
|
|
|
'upload_date': '20150212',
|
|
|
|
|
'duration': 2694,
|
2014-02-10 21:26:52 -06:00
|
|
|
|
},
|
2025-05-16 18:16:03 -05:00
|
|
|
|
'params': {'skip_download': 'm3u8'},
|
2015-02-13 14:04:28 -06:00
|
|
|
|
}, {
|
2025-05-16 18:16:03 -05:00
|
|
|
|
# multiple formats; has item.id
|
|
|
|
|
'url': 'https://www.1tv.ru/shows/dobroe-utro/pro-zdorove/vesennyaya-allergiya-dobroe-utro-fragment-vypuska-ot-07042016',
|
2016-08-21 13:11:51 -05:00
|
|
|
|
'info_dict': {
|
|
|
|
|
'id': '364746',
|
|
|
|
|
'ext': 'mp4',
|
2016-12-04 10:20:14 -06:00
|
|
|
|
'title': 'Весенняя аллергия. Доброе утро. Фрагмент выпуска от 07.04.2016',
|
2025-05-16 18:16:03 -05:00
|
|
|
|
'thumbnail': r're:https?://.+/.+\.jpg',
|
2016-08-21 13:11:51 -05:00
|
|
|
|
'upload_date': '20160407',
|
|
|
|
|
'duration': 179,
|
|
|
|
|
'formats': 'mincount:3',
|
|
|
|
|
},
|
2025-05-16 18:16:03 -05:00
|
|
|
|
'params': {'skip_download': 'm3u8'},
|
2016-12-04 10:20:14 -06:00
|
|
|
|
}, {
|
2025-05-16 18:16:03 -05:00
|
|
|
|
'url': 'https://www.1tv.ru/news/issue/2016-12-01/14:00',
|
2016-12-04 10:20:14 -06:00
|
|
|
|
'info_dict': {
|
|
|
|
|
'id': '14:00',
|
2025-05-16 18:16:03 -05:00
|
|
|
|
'title': 'Выпуск программы «Время» в 20:00 1 декабря 2016 года. Новости. Первый канал',
|
|
|
|
|
'thumbnail': 'https://static.1tv.ru/uploads/photo/image/8/big/338448_big_8fc7eb236f.jpg',
|
2016-12-04 10:20:14 -06:00
|
|
|
|
},
|
|
|
|
|
'playlist_count': 13,
|
2025-05-16 18:16:03 -05:00
|
|
|
|
}, {
|
|
|
|
|
# has timestamp; has item.uid but not item.id
|
|
|
|
|
'url': 'https://www.1tv.ru/shows/segodnya-vecherom/vypuski/avtory-odnogo-hita-segodnya-vecherom-vypusk-ot-03-05-2025',
|
|
|
|
|
'info_dict': {
|
|
|
|
|
'id': '270411',
|
|
|
|
|
'ext': 'mp4',
|
|
|
|
|
'title': 'Авторы одного хита. Сегодня вечером. Выпуск от 03.05.2025',
|
|
|
|
|
'thumbnail': r're:https?://.+/.+\.jpg',
|
|
|
|
|
'timestamp': 1746286020,
|
|
|
|
|
'upload_date': '20250503',
|
|
|
|
|
},
|
|
|
|
|
'params': {'skip_download': 'm3u8'},
|
2016-12-04 10:20:14 -06:00
|
|
|
|
}, {
|
|
|
|
|
'url': 'http://www.1tv.ru/shows/tochvtoch-supersezon/vystupleniya/evgeniy-dyatlov-vladimir-vysockiy-koni-priveredlivye-toch-v-toch-supersezon-fragment-vypuska-ot-06-11-2016',
|
|
|
|
|
'only_matching': True,
|
2025-01-25 15:21:45 -06:00
|
|
|
|
}, {
|
|
|
|
|
'url': 'https://www.sport1tv.ru/sport/chempionat-rossii-po-figurnomu-kataniyu-2025',
|
|
|
|
|
'only_matching': True,
|
2015-02-13 14:04:28 -06:00
|
|
|
|
}]
|
2014-02-10 11:20:41 -06:00
|
|
|
|
|
2025-05-16 18:16:03 -05:00
|
|
|
|
def _entries(self, items):
|
|
|
|
|
for item in items:
|
|
|
|
|
video_id = str(item.get('id') or item['uid'])
|
|
|
|
|
|
|
|
|
|
formats, subtitles = [], {}
|
|
|
|
|
for f in traverse_obj(item, ('sources', lambda _, v: url_or_none(v['src']))):
|
|
|
|
|
src = f['src']
|
|
|
|
|
ext = mimetype2ext(f.get('type'), default=determine_ext(src))
|
|
|
|
|
if ext == 'm3u8':
|
|
|
|
|
fmts, subs = self._extract_m3u8_formats_and_subtitles(
|
|
|
|
|
src, video_id, 'mp4', m3u8_id='hls', fatal=False)
|
|
|
|
|
elif ext == 'mpd':
|
|
|
|
|
fmts, subs = self._extract_mpd_formats_and_subtitles(
|
|
|
|
|
src, video_id, mpd_id='dash', fatal=False)
|
|
|
|
|
else:
|
|
|
|
|
tbr = self._search_regex(fr'_(\d{{3,}})\.{ext}', src, 'tbr', default=None)
|
|
|
|
|
formats.append({
|
|
|
|
|
'url': src,
|
|
|
|
|
'ext': ext,
|
|
|
|
|
'format_id': join_nonempty('http', ext, tbr),
|
|
|
|
|
'tbr': int_or_none(tbr),
|
|
|
|
|
# quality metadata of http formats may be incorrect
|
|
|
|
|
'quality': -10,
|
|
|
|
|
})
|
|
|
|
|
continue
|
|
|
|
|
formats.extend(fmts)
|
|
|
|
|
self._merge_subtitles(subs, target=subtitles)
|
|
|
|
|
|
|
|
|
|
yield {
|
|
|
|
|
**traverse_obj(item, {
|
|
|
|
|
'title': ('title', {str}),
|
|
|
|
|
'thumbnail': ('poster', {url_or_none}),
|
|
|
|
|
'timestamp': ('dvr_begin_at', {int_or_none}),
|
|
|
|
|
'upload_date': ('date_air', {unified_strdate}),
|
|
|
|
|
'duration': ('duration', {int_or_none}),
|
|
|
|
|
}),
|
|
|
|
|
'id': video_id,
|
|
|
|
|
'formats': formats,
|
|
|
|
|
'subtitles': subtitles,
|
|
|
|
|
}
|
|
|
|
|
|
2014-02-10 11:20:41 -06:00
|
|
|
|
def _real_extract(self, url):
|
2016-08-21 11:55:47 -05:00
|
|
|
|
display_id = self._match_id(url)
|
2014-02-10 11:20:41 -06:00
|
|
|
|
|
2016-08-21 11:55:47 -05:00
|
|
|
|
webpage = self._download_webpage(url, display_id)
|
2025-05-16 18:16:03 -05:00
|
|
|
|
playlist_url = urllib.parse.urljoin(url, self._html_search_regex(
|
2016-12-04 10:20:14 -06:00
|
|
|
|
r'data-playlist-url=(["\'])(?P<url>(?:(?!\1).)+)\1',
|
|
|
|
|
webpage, 'playlist url', group='url'))
|
|
|
|
|
|
2025-05-16 18:16:03 -05:00
|
|
|
|
item_ids = traverse_obj(parse_qs(playlist_url), 'video_id', 'videos_ids[]', 'news_ids[]')
|
|
|
|
|
items = traverse_obj(
|
|
|
|
|
self._download_json(playlist_url, display_id),
|
|
|
|
|
lambda _, v: v['uid'] and (str(v['uid']) in item_ids if item_ids else True))
|
2014-02-10 11:20:41 -06:00
|
|
|
|
|
2025-05-16 18:16:03 -05:00
|
|
|
|
return self.playlist_result(
|
|
|
|
|
self._entries(items), display_id, self._og_search_title(webpage, default=None),
|
|
|
|
|
thumbnail=self._og_search_thumbnail(webpage, default=None))
|