yt-dlc/youtube_dlc/extractor/usanetwork.py

25 lines
814 B
Python
Raw Normal View History

2016-08-25 18:40:56 +00:00
# coding: utf-8
from __future__ import unicode_literals
from .nbc import NBCIE
2016-08-25 18:40:56 +00:00
class USANetworkIE(NBCIE):
_VALID_URL = r'https?(?P<permalink>://(?:www\.)?usanetwork\.com/(?:[^/]+/videos?|movies?)/(?:[^/]+/)?(?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': {
'id': '4185302',
2016-08-25 18:40:56 +00:00
'ext': 'mp4',
'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
},
'params': {
# m3u8 download
'skip_download': True,
},
}]