mirror of
				https://gitlab.com/ytdl-org/youtube-dl.git
				synced 2025-11-04 07:17:07 -05:00 
			
		
		
		
	[generic] Add support for Zapiks embeds (#5014)
This commit is contained in:
		@@ -547,7 +547,16 @@ class GenericIE(InfoExtractor):
 | 
				
			|||||||
                'id': 'aanslagen-kopenhagen',
 | 
					                'id': 'aanslagen-kopenhagen',
 | 
				
			||||||
                'title': 'Aanslagen Kopenhagen | RTL Nieuws',
 | 
					                'title': 'Aanslagen Kopenhagen | RTL Nieuws',
 | 
				
			||||||
            }
 | 
					            }
 | 
				
			||||||
        }
 | 
					        },
 | 
				
			||||||
 | 
					        # Zapiks embed
 | 
				
			||||||
 | 
					        {
 | 
				
			||||||
 | 
					            'url': 'http://www.skipass.com/news/116090-bon-appetit-s5ep3-baqueira-mi-cor.html',
 | 
				
			||||||
 | 
					            'info_dict': {
 | 
				
			||||||
 | 
					                'id': '118046',
 | 
				
			||||||
 | 
					                'ext': 'mp4',
 | 
				
			||||||
 | 
					                'title': 'EP3S5 - Bon Appétit - Baqueira Mi Corazon !',
 | 
				
			||||||
 | 
					            }
 | 
				
			||||||
 | 
					        },
 | 
				
			||||||
    ]
 | 
					    ]
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    def report_following_redirect(self, new_url):
 | 
					    def report_following_redirect(self, new_url):
 | 
				
			||||||
@@ -1098,6 +1107,12 @@ class GenericIE(InfoExtractor):
 | 
				
			|||||||
        if mobj is not None:
 | 
					        if mobj is not None:
 | 
				
			||||||
            return self.url_result(mobj.group('url'), 'Livestream')
 | 
					            return self.url_result(mobj.group('url'), 'Livestream')
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        # Look for Zapiks embed
 | 
				
			||||||
 | 
					        mobj = re.search(
 | 
				
			||||||
 | 
					            r'<iframe[^>]+src="(?P<url>https?://(?:www\.)?zapiks\.fr/index\.php\?.+?)"', webpage)
 | 
				
			||||||
 | 
					        if mobj is not None:
 | 
				
			||||||
 | 
					            return self.url_result(mobj.group('url'), 'Zapiks')
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        def check_video(vurl):
 | 
					        def check_video(vurl):
 | 
				
			||||||
            if YoutubeIE.suitable(vurl):
 | 
					            if YoutubeIE.suitable(vurl):
 | 
				
			||||||
                return True
 | 
					                return True
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user