mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2025-06-27 17:08:32 +00:00
[ie/vimeo] Added support for shiey.com Fixes #12129
The iframe in shiey.com is javascript generated so the vimeo _EMBED_REGEX was not catching it. Added a specific line for shiey.com Co-authored-by: Miguel Noronha <miguel.noronha@tecnico.ulisboa.pt>
This commit is contained in:
parent
201812100f
commit
8fb2e1a30e
@ -1327,6 +1327,7 @@ # Supported sites
|
|||||||
- **ShahidShow**
|
- **ShahidShow**
|
||||||
- **SharePoint**
|
- **SharePoint**
|
||||||
- **ShareVideosEmbed**
|
- **ShareVideosEmbed**
|
||||||
|
- **Shiey**
|
||||||
- **ShemarooMe**
|
- **ShemarooMe**
|
||||||
- **ShowRoomLive**
|
- **ShowRoomLive**
|
||||||
- **ShugiinItvLive**: 衆議院インターネット審議中継
|
- **ShugiinItvLive**: 衆議院インターネット審議中継
|
||||||
|
@ -403,6 +403,7 @@ class VimeoIE(VimeoBaseInfoExtractor):
|
|||||||
r'<embed[^>]+?src=(["\'])(?P<url>(?:https?:)?//(?:www\.)?vimeo\.com/moogaloop\.swf.+?)\1',
|
r'<embed[^>]+?src=(["\'])(?P<url>(?:https?:)?//(?:www\.)?vimeo\.com/moogaloop\.swf.+?)\1',
|
||||||
# Non-standard embedded Vimeo player
|
# Non-standard embedded Vimeo player
|
||||||
r'<video[^>]+src=(["\'])(?P<url>(?:https?:)?//(?:www\.)?vimeo\.com/[0-9]+)\1',
|
r'<video[^>]+src=(["\'])(?P<url>(?:https?:)?//(?:www\.)?vimeo\.com/[0-9]+)\1',
|
||||||
|
r'iframe src=\\"(?P<url>(https?://player\.vimeo\.com/video/[^\\&]+))',
|
||||||
]
|
]
|
||||||
_TESTS = [
|
_TESTS = [
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user