Recognize more valid URLs

URLs like `https://www.screencast.com/users/cindyhailes/folders/Jing/media/c9be177c-5808-4c4f-af56-eadceb3a7c82` weren't being accepted before
This commit is contained in:
geauxlo 2020-06-10 06:39:35 +00:00 committed by GitHub
parent 3951a7faae
commit 66c498e558
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 12 additions and 2 deletions

View File

@ -14,7 +14,7 @@ from ..utils import (
class ScreencastIE(InfoExtractor):
_VALID_URL = r'https?://(?:www\.)?screencast\.com/t/(?P<id>[a-zA-Z0-9]+)'
_VALID_URL = r'https?://(?:www\.)?screencast\.com/(?:t|users/[^/]+/folders/[^/]+/media)/(?P<id>[a-zA-Z0-9\-]+)'
_API_URL = 'https://www.screencast.com/api/external/oembed?url=%s&format=json'
_TESTS = [{
@ -60,12 +60,22 @@ class ScreencastIE(InfoExtractor):
}, {
'url': 'http://screencast.com/t/aAB3iowa',
'only_matching': True,
}, {
'url': 'https://www.screencast.com/users/cindyhailes/folders/Jing/media/c9be177c-5808-4c4f-af56-eadceb3a7c82',
'md5': '589d37a28d2add53c8bf16b9126d9dc2',
'info_dict': {
'id': 'c9be177c-5808-4c4f-af56-eadceb3a7c82',
'ext': 'swf',
'title': '2020-05-31_1737',
'description': 'Shared from Screencast.com',
'thumbnail': r're:^https?://.*\.(?:gif|jpg)$',
}
}]
def _real_extract(self, url):
video_id = self._match_id(url)
# The info JSON given by the API has a thumbnail URL,
# The JSON given by the API has a thumbnail URL,
# but it's inferior to the webpage's thumbnail.
# It also has no video description, so we
# definitely still need to get the webpage.