Added a draft test for the URL reported in Issue #8689. This test fails for reasons I don't understand; I believe the correct extension should be 'mp4', but the current code reports an 'ext' of None.

This commit is contained in:
Jackson Humphrey 2024-11-13 16:54:58 -06:00
parent c0ff69795f
commit 7cd5bc9e9f

View File

@ -40,6 +40,14 @@ class CTVNewsIE(InfoExtractor):
}, {
'url': 'http://vancouverisland.ctvnews.ca/video?clipId=761241',
'only_matching': True,
}, {
'url': 'https://www.ctvnews.ca/business/respondents-to-bank-of-canada-questionnaire-largely-oppose-creating-a-digital-loonie-1.6665797',
'info_dict':
{
'id': '1.6665797',
'ext': 'mp4',
},
'playlist_mincount': 1,
}]
def _real_extract(self, url):