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)
https?://
(?:
(?:(?:(?P<embed>embed)|www|shows)\.)?acast\.com|
play\.acast\.com/s
)/(?(embed)(?:$/)?)
(?:(?:embed|www|shows)\.)?acast\.com/|
play\.acast\.com/s/
)
(?P<channel>[^/]+)/(?P<id>[^/#?]+)
'''
_TESTS = [{
@ -96,7 +96,7 @@ class ACastChannelIE(ACastBaseIE):
_VALID_URL = r'''(?x)
https?://
(?:
(?:(?:www|shows)\.)?acast\.com/|
(?:www|shows\.)?acast\.com/|
play\.acast\.com/s/
)
(?P<id>[^/#?]+)
@ -107,7 +107,6 @@ class ACastChannelIE(ACastBaseIE):
'id': '4efc5294-5385-4847-98bd-519799ce5786',
'title': 'Today in Focus',
'description': 'md5:c09ce28c91002ce4ffce71d6504abaae',
'skip': 'Error 404'
},
'playlist_mincount': 200,
}, {
@ -116,13 +115,6 @@ class ACastChannelIE(ACastBaseIE):
}, {
'url': 'https://shows.acast.com/611233d8767fdf0012f22cb6',
'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