mirror of
https://github.com/LucBerge/yt-dlp.git
synced 2025-03-17 19:57:52 +03:00
parent
f7085283e1
commit
1a20d29552
3 changed files with 169 additions and 0 deletions
|
@ -139,6 +139,7 @@ from .arcpublishing import ArcPublishingIE
|
|||
from .medialaan import MedialaanIE
|
||||
from .simplecast import SimplecastIE
|
||||
from .wimtv import WimTVIE
|
||||
from .tvopengr import TVOpenGrEmbedIE
|
||||
from .tvp import TVPEmbedIE
|
||||
from .blogger import BloggerIE
|
||||
from .mainstreaming import MainStreamingIE
|
||||
|
@ -2227,6 +2228,22 @@ class GenericIE(InfoExtractor):
|
|||
'skip_download': True,
|
||||
},
|
||||
},
|
||||
{
|
||||
# tvopengr:embed
|
||||
'url': 'https://www.ethnos.gr/World/article/190604/hparosiaxekinoynoisynomiliessthgeneyhmethskiatoypolemoypanoapothnoykrania',
|
||||
'md5': 'eb0c3995d0a6f18f6538c8e057865d7d',
|
||||
'info_dict': {
|
||||
'id': '101119',
|
||||
'ext': 'mp4',
|
||||
'display_id': 'oikarpoitondiapragmateyseonhparosias',
|
||||
'title': 'md5:b979f4d640c568617d6547035528a149',
|
||||
'description': 'md5:e54fc1977c7159b01cc11cd7d9d85550',
|
||||
'timestamp': 1641772800,
|
||||
'upload_date': '20220110',
|
||||
'thumbnail': 'https://opentv-static.siliconweb.com/imgHandler/1920/70bc39fa-895b-4918-a364-c39d2135fc6d.jpg',
|
||||
|
||||
}
|
||||
},
|
||||
{
|
||||
# blogger embed
|
||||
'url': 'https://blog.tomeuvizoso.net/2019/01/a-panfrost-milestone.html',
|
||||
|
@ -3671,6 +3688,11 @@ class GenericIE(InfoExtractor):
|
|||
return self.playlist_from_matches(
|
||||
rumble_urls, video_id, video_title, ie=RumbleEmbedIE.ie_key())
|
||||
|
||||
# Look for (tvopen|ethnos).gr embeds
|
||||
tvopengr_urls = list(TVOpenGrEmbedIE._extract_urls(webpage))
|
||||
if tvopengr_urls:
|
||||
return self.playlist_from_matches(tvopengr_urls, video_id, video_title, ie=TVOpenGrEmbedIE.ie_key())
|
||||
|
||||
tvp_urls = TVPEmbedIE._extract_urls(webpage)
|
||||
if tvp_urls:
|
||||
return self.playlist_from_matches(tvp_urls, video_id, video_title, ie=TVPEmbedIE.ie_key())
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue