Skip to content

Commit

Permalink
[ie/NovaEmbed] Improve _VALID_URL (#8368)
Browse files Browse the repository at this point in the history
Authored by: peci1
  • Loading branch information
peci1 committed Nov 11, 2023
1 parent 9b5bedf commit 3ff494f
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion yt_dlp/extractor/nova.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@


class NovaEmbedIE(InfoExtractor):
_VALID_URL = r'https?://media\.cms\.nova\.cz/embed/(?P<id>[^/?#&]+)'
_VALID_URL = r'https?://media(?:tn)?\.cms\.nova\.cz/embed/(?P<id>[^/?#&]+)'
_TESTS = [{
'url': 'https://media.cms.nova.cz/embed/8o0n0r?autoplay=1',
'info_dict': {
Expand All @@ -37,6 +37,16 @@ class NovaEmbedIE(InfoExtractor):
'duration': 114,
},
'params': {'skip_download': 'm3u8'},
}, {
'url': 'https://mediatn.cms.nova.cz/embed/EU5ELEsmOHt?autoplay=1',
'info_dict': {
'id': 'EU5ELEsmOHt',
'ext': 'mp4',
'title': 'Haptické křeslo, bionická ruka nebo roboti. Reportérka se podívala na Týden inovací',
'thumbnail': r're:^https?://.*\.jpg',
'duration': 1780,
},
'params': {'skip_download': 'm3u8'},
}]

def _real_extract(self, url):
Expand Down

0 comments on commit 3ff494f

Please sign in to comment.