mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-10-31 23:02:40 +00:00
bfd973ece3
`Brightcove` is difficult to migrate because it's subclasses may depend on the signature of the current functions. So it is left as-is for now Note: Tests have not been migrated
6 lines
237 B
Python
6 lines
237 B
Python
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']
|