aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsepro <4618135+seproDev@users.noreply.github.com>2024-02-17 20:49:10 +0100
committerGitHub <noreply@github.com>2024-02-17 20:49:10 +0100
commit0bee29493ca8f91a0055a3706c7c94f5860188df (patch)
treecf1b6e75c7153102a886e469da9fb58345191cb9
parent644738ddaa45428cb0babd41ead22454e5a2545e (diff)
[ie/Screencastify] Update `_VALID_URL` (#9232)
Authored by: seproDev
-rw-r--r--yt_dlp/extractor/screencastify.py20
1 files changed, 19 insertions, 1 deletions
diff --git a/yt_dlp/extractor/screencastify.py b/yt_dlp/extractor/screencastify.py
index 136b8479b..3c43043de 100644
--- a/yt_dlp/extractor/screencastify.py
+++ b/yt_dlp/extractor/screencastify.py
@@ -5,7 +5,10 @@ from ..utils import traverse_obj, update_url_query
class ScreencastifyIE(InfoExtractor):
- _VALID_URL = r'https?://watch\.screencastify\.com/v/(?P<id>[^/?#]+)'
+ _VALID_URL = [
+ r'https?://watch\.screencastify\.com/v/(?P<id>[^/?#]+)',
+ r'https?://app\.screencastify\.com/v[23]/watch/(?P<id>[^/?#]+)',
+ ]
_TESTS = [{
'url': 'https://watch.screencastify.com/v/sYVkZip3quLKhHw4Ybk8',
'info_dict': {
@@ -19,6 +22,21 @@ class ScreencastifyIE(InfoExtractor):
'params': {
'skip_download': 'm3u8',
},
+ }, {
+ 'url': 'https://app.screencastify.com/v3/watch/J5N7H11wofDN1jZUCr3t',
+ 'info_dict': {
+ 'id': 'J5N7H11wofDN1jZUCr3t',
+ 'ext': 'mp4',
+ 'uploader': 'Scott Piesen',
+ 'description': '',
+ 'title': 'Lesson Recording 1-17 Burrr...',
+ },
+ 'params': {
+ 'skip_download': 'm3u8',
+ },
+ }, {
+ 'url': 'https://app.screencastify.com/v2/watch/BQ26VbUdfbQLhKzkktOk',
+ 'only_matching': True,
}]
def _real_extract(self, url):