diff options
Diffstat (limited to 'yt_dlp/extractor/sharevideos.py')
-rw-r--r-- | yt_dlp/extractor/sharevideos.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/yt_dlp/extractor/sharevideos.py b/yt_dlp/extractor/sharevideos.py new file mode 100644 index 0000000..3132c7a --- /dev/null +++ b/yt_dlp/extractor/sharevideos.py @@ -0,0 +1,6 @@ +from .common import InfoExtractor + + +class ShareVideosEmbedIE(InfoExtractor): + _VALID_URL = False + _EMBED_REGEX = [r'<iframe[^>]+?\bsrc\s*=\s*(["\'])(?P<url>(?:https?:)?//embed\.share-videos\.se/auto/embed/\d+\?.*?\buid=\d+.*?)\1'] |