mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2025-07-18 03:08:31 +00:00
extends support for other yandex video domains and adds tests
This commit is contained in:
parent
0b41746964
commit
540e61512e
@ -19,7 +19,7 @@ class YandexVideoIE(InfoExtractor):
|
|||||||
_VALID_URL = r'''(?x)
|
_VALID_URL = r'''(?x)
|
||||||
https?://
|
https?://
|
||||||
(?:
|
(?:
|
||||||
yandex\.ru(?:/(?:portal/(?:video|efir)|efir))?/?\?.*?stream_id=|
|
ya(?:ndex)?\.(ru|com)(?:/(?:portal/(?:video|efir)|efir))?/?\?.*?stream_id=|
|
||||||
frontend\.vh\.yandex\.ru/player/
|
frontend\.vh\.yandex\.ru/player/
|
||||||
)
|
)
|
||||||
(?P<id>(?:[\da-f]{32}|[\w-]{12}))
|
(?P<id>(?:[\da-f]{32}|[\w-]{12}))
|
||||||
@ -47,6 +47,12 @@ class YandexVideoIE(InfoExtractor):
|
|||||||
}, {
|
}, {
|
||||||
'url': 'https://yandex.ru/?stream_id=4dbb262b4fe5cf15a215de4f34eee34d',
|
'url': 'https://yandex.ru/?stream_id=4dbb262b4fe5cf15a215de4f34eee34d',
|
||||||
'only_matching': True,
|
'only_matching': True,
|
||||||
|
}, {
|
||||||
|
'url': 'https://ya.ru/?stream_id=4dbb262b4fe5cf15a215de4f34eee34d',
|
||||||
|
'only_matching': True,
|
||||||
|
}, {
|
||||||
|
'url': 'https://yandex.com/?stream_id=4dbb262b4fe5cf15a215de4f34eee34d',
|
||||||
|
'only_matching': True,
|
||||||
}, {
|
}, {
|
||||||
'url': 'https://frontend.vh.yandex.ru/player/4dbb262b4fe5cf15a215de4f34eee34d?from=morda',
|
'url': 'https://frontend.vh.yandex.ru/player/4dbb262b4fe5cf15a215de4f34eee34d?from=morda',
|
||||||
'only_matching': True,
|
'only_matching': True,
|
||||||
@ -148,7 +154,7 @@ def _real_extract(self, url):
|
|||||||
|
|
||||||
|
|
||||||
class YandexVideoPreviewIE(InfoExtractor):
|
class YandexVideoPreviewIE(InfoExtractor):
|
||||||
_VALID_URL = r'https?://(?:www\.)?yandex\.\w{2,3}(?:\.(?:am|ge|il|tr))?/video/preview(?:/?\?.*?filmId=|/)(?P<id>\d+)'
|
_VALID_URL = r'https?://(?:\w+\.)?ya(?:ndex)?\.\w{2,3}(?:\.(?:am|ge|il|tr))?/video/preview(?:/?\?.*?filmId=|/)(?P<id>\d+)'
|
||||||
_TESTS = [{ # Odnoklassniki
|
_TESTS = [{ # Odnoklassniki
|
||||||
'url': 'https://yandex.ru/video/preview/?filmId=10682852472978372885&text=summer',
|
'url': 'https://yandex.ru/video/preview/?filmId=10682852472978372885&text=summer',
|
||||||
'info_dict': {
|
'info_dict': {
|
||||||
@ -178,6 +184,9 @@ class YandexVideoPreviewIE(InfoExtractor):
|
|||||||
}, { # Odnoklassniki
|
}, { # Odnoklassniki
|
||||||
'url': 'https://yandex.com/video/preview/?text=dossier%2051%20film%201978&path=yandex_search&parent-reqid=1664361087754492-8727541069609384458-sas2-0340-sas-l7-balancer-8080-BAL-8045&noreask=1&from_type=vast&filmId=5794987234584444632',
|
'url': 'https://yandex.com/video/preview/?text=dossier%2051%20film%201978&path=yandex_search&parent-reqid=1664361087754492-8727541069609384458-sas2-0340-sas-l7-balancer-8080-BAL-8045&noreask=1&from_type=vast&filmId=5794987234584444632',
|
||||||
'only_matching': True,
|
'only_matching': True,
|
||||||
|
}, { # Shorter domain
|
||||||
|
'url': 'https://ya.ru/video/preview/5275069442094787341',
|
||||||
|
'only_matching': True,
|
||||||
}]
|
}]
|
||||||
|
|
||||||
def _real_extract(self, url):
|
def _real_extract(self, url):
|
||||||
|
Loading…
Reference in New Issue
Block a user