[nhk] Add audio clip test to NHK extractor (#27269)
This commit is contained in:
parent
0025447369
commit
beab2f88c9
|
@ -10,7 +10,7 @@ class NhkVodIE(InfoExtractor):
|
||||||
# Content available only for a limited period of time. Visit
|
# Content available only for a limited period of time. Visit
|
||||||
# https://www3.nhk.or.jp/nhkworld/en/ondemand/ for working samples.
|
# https://www3.nhk.or.jp/nhkworld/en/ondemand/ for working samples.
|
||||||
_TESTS = [{
|
_TESTS = [{
|
||||||
# clip
|
# video clip
|
||||||
'url': 'https://www3.nhk.or.jp/nhkworld/en/ondemand/video/9999011/',
|
'url': 'https://www3.nhk.or.jp/nhkworld/en/ondemand/video/9999011/',
|
||||||
'md5': '256a1be14f48d960a7e61e2532d95ec3',
|
'md5': '256a1be14f48d960a7e61e2532d95ec3',
|
||||||
'info_dict': {
|
'info_dict': {
|
||||||
|
@ -21,6 +21,19 @@ class NhkVodIE(InfoExtractor):
|
||||||
'timestamp': 1565965194,
|
'timestamp': 1565965194,
|
||||||
'upload_date': '20190816',
|
'upload_date': '20190816',
|
||||||
},
|
},
|
||||||
|
}, {
|
||||||
|
# audio clip
|
||||||
|
'url': 'https://www3.nhk.or.jp/nhkworld/en/ondemand/audio/r_inventions-20201104-1/',
|
||||||
|
'info_dict': {
|
||||||
|
'id': 'r_inventions-20201104-1-en',
|
||||||
|
'ext': 'm4a',
|
||||||
|
'title': "Japan's Top Inventions - Miniature Video Cameras",
|
||||||
|
'description': 'md5:07ea722bdbbb4936fdd360b6a480c25b',
|
||||||
|
},
|
||||||
|
'params': {
|
||||||
|
# m3u8 download
|
||||||
|
'skip_download': True,
|
||||||
|
},
|
||||||
}, {
|
}, {
|
||||||
'url': 'https://www3.nhk.or.jp/nhkworld/en/ondemand/video/2015173/',
|
'url': 'https://www3.nhk.or.jp/nhkworld/en/ondemand/video/2015173/',
|
||||||
'only_matching': True,
|
'only_matching': True,
|
||||||
|
|
Loading…
Reference in New Issue