mirror of
https://github.com/yt-dlp/yt-dlp
synced 2025-12-17 14:45:42 +07:00
@@ -102,6 +102,7 @@
|
||||
from .videopress import VideoPressIE
|
||||
from .rutube import RutubeIE
|
||||
from .glomex import GlomexEmbedIE
|
||||
from .megatvcom import MegaTVComEmbedIE
|
||||
from .limelight import LimelightBaseIE
|
||||
from .anvato import AnvatoIE
|
||||
from .washingtonpost import WashingtonPostIE
|
||||
@@ -3484,6 +3485,12 @@ def _real_extract(self, url):
|
||||
return self.playlist_from_matches(
|
||||
glomex_urls, video_id, video_title, ie=GlomexEmbedIE.ie_key())
|
||||
|
||||
# Look for megatv.com embeds
|
||||
megatvcom_urls = list(MegaTVComEmbedIE._extract_urls(webpage))
|
||||
if megatvcom_urls:
|
||||
return self.playlist_from_matches(
|
||||
megatvcom_urls, video_id, video_title, ie=MegaTVComEmbedIE.ie_key())
|
||||
|
||||
# Look for WashingtonPost embeds
|
||||
wapo_urls = WashingtonPostIE._extract_urls(webpage)
|
||||
if wapo_urls:
|
||||
|
||||
Reference in New Issue
Block a user