1
0
mirror of https://codeberg.org/polarisfm/youtube-dl synced 2024-11-23 00:54:31 +01:00

change bitchute channel test to new channel url (old url is 404)

This commit is contained in:
Mark 2020-02-28 18:57:27 -06:00
parent 6dd76fed80
commit 80f7dfce93

View File

@ -101,10 +101,10 @@ class BitChuteIE(InfoExtractor):
class BitChuteChannelIE(InfoExtractor): class BitChuteChannelIE(InfoExtractor):
_VALID_URL = r'https?://(?:www\.)?bitchute\.com/channel/(?P<id>[^/?#&]+)' _VALID_URL = r'https?://(?:www\.)?bitchute\.com/channel/(?P<id>[^/?#&]+)'
_TEST = { _TEST = {
'url': 'https://www.bitchute.com/channel/victoriaxrave/', 'url': 'https://www.bitchute.com/channel/stargods/',
'playlist_mincount': 185, 'playlist_mincount': 50,
'info_dict': { 'info_dict': {
'id': 'victoriaxrave', 'id': 'stargods',
}, },
} }