From c04db59adbdfe9b6bedd99d0842a5bffae883ecf Mon Sep 17 00:00:00 2001 From: sepro Date: Fri, 8 Nov 2024 18:34:34 +0100 Subject: [PATCH] Fix regex --- yt_dlp/extractor/rutube.py | 38 +++++++++++++++++++------------------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/yt_dlp/extractor/rutube.py b/yt_dlp/extractor/rutube.py index 9b0692abb6..2855720776 100644 --- a/yt_dlp/extractor/rutube.py +++ b/yt_dlp/extractor/rutube.py @@ -191,6 +191,24 @@ class RutubeIE(RutubeBaseIE): 'title': r're:Первый канал. Прямой эфир \d{4}-\d{2}-\d{2} \d{2}:\d{2}$', 'uploader': 'Первый канал', }, + }, { + 'url': 'https://rutube.ru/play/embed/03a9cb54bac3376af4c5cb0f18444e01/', + 'info_dict': { + 'id': '03a9cb54bac3376af4c5cb0f18444e01', + 'ext': 'mp4', + 'age_limit': 0, + 'description': '', + 'title': 'Церемония начала торгов акциями ПАО «ЕвроТранс»', + 'chapters': [], + 'upload_date': '20240829', + 'duration': 293, + 'uploader': 'MOEX - Московская биржа', + 'timestamp': 1724946628, + 'thumbnail': 'https://pic.rutubelist.ru/video/2e/24/2e241fddb459baf0fa54acfca44874f4.jpg', + 'view_count': int, + 'uploader_id': '38420507', + 'categories': ['Интервью'], + }, }, { 'url': 'https://rutube.ru/video/5ab908fccfac5bb43ef2b1e4182256b0/', 'only_matching': True, @@ -218,7 +236,7 @@ class RutubeIE(RutubeBaseIE): class RutubeEmbedIE(RutubeBaseIE): IE_NAME = 'rutube:embed' IE_DESC = 'Rutube embedded videos' - _VALID_URL = r'https?://rutube\.ru/(?:video|play)/embed/(?P[0-9a-f]+)' + _VALID_URL = r'https?://rutube\.ru/(?:video|play)/embed/(?P[0-9]+)(?:[?#/]|$)' _TESTS = [{ 'url': 'https://rutube.ru/video/embed/6722881?vk_puid37=&vk_puid38=', @@ -248,24 +266,6 @@ class RutubeEmbedIE(RutubeBaseIE): # private video 'url': 'https://rutube.ru/play/embed/10631925?p=IbAigKqWd1do4mjaM5XLIQ', 'only_matching': True, - }, { - 'url': 'https://rutube.ru/play/embed/03a9cb54bac3376af4c5cb0f18444e01/', - 'info_dict': { - 'id': '03a9cb54bac3376af4c5cb0f18444e01', - 'ext': 'mp4', - 'age_limit': 0, - 'description': '', - 'title': 'Церемония начала торгов акциями ПАО «ЕвроТранс»', - 'chapters': [], - 'upload_date': '20240829', - 'duration': 293, - 'uploader': 'MOEX - Московская биржа', - 'timestamp': 1724946628, - 'thumbnail': 'https://pic.rutubelist.ru/video/2e/24/2e241fddb459baf0fa54acfca44874f4.jpg', - 'view_count': int, - 'uploader_id': '38420507', - 'categories': ['Интервью'], - }, }] def _real_extract(self, url):