Compare commits

..

No commits in common. "b91bbb8084ca39edebcfbc472e15a43ce584fdd0" and "2594f3c2bdb6ef06d0cda0f86af1aabf1424b57e" have entirely different histories.

View File

@ -48,9 +48,9 @@ class ACastIE(ACastBaseIE):
_VALID_URL = r'''(?x) _VALID_URL = r'''(?x)
https?:// https?://
(?: (?:
(?:(?:(?P<embed>embed)|www|shows)\.)?acast\.com| (?:(?:embed|www|shows)\.)?acast\.com/|
play\.acast\.com/s play\.acast\.com/s/
)/(?(embed)(?:$/)?) )
(?P<channel>[^/]+)/(?P<id>[^/#?]+) (?P<channel>[^/]+)/(?P<id>[^/#?]+)
''' '''
_TESTS = [{ _TESTS = [{
@ -96,7 +96,7 @@ class ACastChannelIE(ACastBaseIE):
_VALID_URL = r'''(?x) _VALID_URL = r'''(?x)
https?:// https?://
(?: (?:
(?:(?:www|shows)\.)?acast\.com/| (?:www|shows\.)?acast\.com/|
play\.acast\.com/s/ play\.acast\.com/s/
) )
(?P<id>[^/#?]+) (?P<id>[^/#?]+)
@ -107,7 +107,6 @@ class ACastChannelIE(ACastBaseIE):
'id': '4efc5294-5385-4847-98bd-519799ce5786', 'id': '4efc5294-5385-4847-98bd-519799ce5786',
'title': 'Today in Focus', 'title': 'Today in Focus',
'description': 'md5:c09ce28c91002ce4ffce71d6504abaae', 'description': 'md5:c09ce28c91002ce4ffce71d6504abaae',
'skip': 'Error 404'
}, },
'playlist_mincount': 200, 'playlist_mincount': 200,
}, { }, {
@ -116,13 +115,6 @@ class ACastChannelIE(ACastBaseIE):
}, { }, {
'url': 'https://shows.acast.com/611233d8767fdf0012f22cb6', 'url': 'https://shows.acast.com/611233d8767fdf0012f22cb6',
'only_matching': True, 'only_matching': True,
}, {
'url': 'https://play.acast.com/s/getthebeltpod',
'info_dict': {
'id': '4caac858-3cda-44e6-b684-50d88b909c18',
'title': 'Get The Belt'
},
'playlist_mincount': 138,
}] }]
@classmethod @classmethod