1
0
mirror of https://github.com/l1ving/youtube-dl synced 2020-11-18 19:53:54 -08:00

[acast] Support embed.acast.com as well

This commit is contained in:
Tim Landscheidt 2018-12-10 18:09:01 +00:00
parent 0cf3edf00e
commit c829bec360

View File

@ -17,7 +17,7 @@ from ..utils import (
class ACastIE(InfoExtractor):
IE_NAME = 'acast'
_VALID_URL = r'https?://(?:www\.)?acast\.com/(?P<channel>[^/]+)/(?P<id>[^/#?]+)'
_VALID_URL = r'https?://(?:(?:embed|www)\.)?acast\.com/(?P<channel>[^/]+)/(?P<id>[^/#?]+)'
_TESTS = [{
'url': 'https://www.acast.com/sparpodcast/2.raggarmordet-rosterurdetforflutna',
'md5': 'a02393c74f3bdb1801c3ec2695577ce0',
@ -33,6 +33,21 @@ class ACastIE(InfoExtractor):
'series': 'Spår',
'episode': '2. Raggarmordet - Röster ur det förflutna',
}
}, {
'url': 'http://embed.acast.com/adambuxton/ep.12-adam-joeschristmaspodcast2015',
'md5': 'b51346d1d16885f17b6deed8061bac78',
'info_dict': {
'id': '56ce23e1-7920-4692-910d-9aee5979b651',
'ext': 'mp3',
'title': 'EP.12 - ADAM & JOE\'S CHRISTMAS PODCAST 2015',
'description': 'md5:94e5e6a63b3c9c57f1a47285a5c4c998',
'timestamp': 1451005979,
'upload_date': '20151225',
'duration': 4692.118063,
'creator': 'ADAM BUXTON',
'series': 'THE ADAM BUXTON PODCAST',
'episode': 'EP.12 - ADAM & JOE\'S CHRISTMAS PODCAST 2015',
}
}]
def _real_extract(self, url):