1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-05-19 11:39:28 +00:00
youtube-dl/youtube_dl/extractor/usanetwork.py

25 lines
795 B
Python
Raw Permalink Normal View History

2016-08-25 18:40:56 +00:00
# coding: utf-8
from __future__ import unicode_literals
2020-11-16 15:21:48 +00:00
from .nbc import NBCIE
2016-08-25 18:40:56 +00:00
2020-11-16 15:21:48 +00:00
class USANetworkIE(NBCIE):
_VALID_URL = r'https?(?P<permalink>://(?:www\.)?usanetwork\.com/[^/]+/video/[^/]+/(?P<id>\d+))'
_TESTS = [{
'url': 'https://www.usanetwork.com/peacock-trailers/video/intelligence-trailer/4185302',
2016-08-25 18:40:56 +00:00
'info_dict': {
2020-11-16 15:21:48 +00:00
'id': '4185302',
2016-08-25 18:40:56 +00:00
'ext': 'mp4',
2020-11-16 15:21:48 +00:00
'title': 'Intelligence (Trailer)',
'description': 'A maverick NSA agent enlists the help of a junior systems analyst in a workplace power grab.',
'upload_date': '20200715',
'timestamp': 1594785600,
'uploader': 'NBCU-MPAT',
2016-08-25 18:40:56 +00:00
},
2020-11-16 15:21:48 +00:00
'params': {
# m3u8 download
'skip_download': True,
},
}]