aboutsummaryrefslogtreecommitdiffstats
path: root/youtube_dl/extractor/screencast.py
diff options
context:
space:
mode:
Diffstat (limited to 'youtube_dl/extractor/screencast.py')
-rw-r--r--youtube_dl/extractor/screencast.py14
1 files changed, 12 insertions, 2 deletions
diff --git a/youtube_dl/extractor/screencast.py b/youtube_dl/extractor/screencast.py
index d52d46cc3..d23a53706 100644
--- a/youtube_dl/extractor/screencast.py
+++ b/youtube_dl/extractor/screencast.py
@@ -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.