haruhi-dl/haruhi_dl/extractor/usanetwork.py

25 lines
795 B
Python
Raw Normal View History

2016-08-25 20:40:56 +02:00
# coding: utf-8
from __future__ import unicode_literals
2021-02-26 14:02:17 +01:00
from .nbc import NBCIE
2016-08-25 20:40:56 +02:00
2021-02-26 14:02:17 +01: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 20:40:56 +02:00
'info_dict': {
2021-02-26 14:02:17 +01:00
'id': '4185302',
2016-08-25 20:40:56 +02:00
'ext': 'mp4',
2021-02-26 14:02:17 +01: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 20:40:56 +02:00
},
2021-02-26 14:02:17 +01:00
'params': {
# m3u8 download
'skip_download': True,
},
}]