]> jfr.im git - yt-dlp.git/blame - yt_dlp/extractor/usanetwork.py
[ie/youtube] Suppress "Unavailable videos are hidden" warning (#10159)
[yt-dlp.git] / yt_dlp / extractor / usanetwork.py
CommitLineData
8bdd16b4 1from .nbc import NBCIE
a0f071a5
RA
2
3
6368e2e6 4class USANetworkIE(NBCIE): # XXX: Do not subclass from concrete IE
8bdd16b4 5 _VALID_URL = r'https?(?P<permalink>://(?:www\.)?usanetwork\.com/(?:[^/]+/videos?|movies?)/(?:[^/]+/)?(?P<id>\d+))'
6 _TESTS = [{
7 'url': 'https://www.usanetwork.com/peacock-trailers/video/intelligence-trailer/4185302',
a0f071a5 8 'info_dict': {
8bdd16b4 9 'id': '4185302',
a0f071a5 10 'ext': 'mp4',
8bdd16b4 11 'title': 'Intelligence (Trailer)',
12 'description': 'A maverick NSA agent enlists the help of a junior systems analyst in a workplace power grab.',
13 'upload_date': '20200715',
14 'timestamp': 1594785600,
15 'uploader': 'NBCU-MPAT',
a0f071a5 16 },
8bdd16b4 17 'params': {
18 # m3u8 download
19 'skip_download': True,
20 },
21 }]