mirror of
				https://gitlab.com/ytdl-org/youtube-dl.git
				synced 2025-11-03 20:27:06 -05:00 
			
		
		
		
	[generic] Add support for 5min embeds (#5310)
This commit is contained in:
		@@ -620,6 +620,16 @@ class GenericIE(InfoExtractor):
 | 
			
		||||
                'age_limit': 0,
 | 
			
		||||
            },
 | 
			
		||||
        },
 | 
			
		||||
        # 5min embed
 | 
			
		||||
        {
 | 
			
		||||
            'url': 'http://techcrunch.com/video/facebook-creates-on-this-day-crunch-report/518726732/',
 | 
			
		||||
            'md5': '4c6f127a30736b59b3e2c19234ee2bf7',
 | 
			
		||||
            'info_dict': {
 | 
			
		||||
                'id': '518726732',
 | 
			
		||||
                'ext': 'mp4',
 | 
			
		||||
                'title': 'Facebook Creates "On This Day" | Crunch Report',
 | 
			
		||||
            },
 | 
			
		||||
        },
 | 
			
		||||
        # RSS feed with enclosure
 | 
			
		||||
        {
 | 
			
		||||
            'url': 'http://podcastfeeds.nbcnews.com/audio/podcast/MSNBC-MADDOW-NETCAST-M4V.xml',
 | 
			
		||||
@@ -1236,6 +1246,12 @@ class GenericIE(InfoExtractor):
 | 
			
		||||
        if mobj is not None:
 | 
			
		||||
            return self.url_result(mobj.group('url'), 'Pladform')
 | 
			
		||||
 | 
			
		||||
        # Look for 5min embeds
 | 
			
		||||
        mobj = re.search(
 | 
			
		||||
            r'<meta[^>]+property="og:video"[^>]+content="https?://embed\.5min\.com/(?P<id>[0-9]+)/?', webpage)
 | 
			
		||||
        if mobj is not None:
 | 
			
		||||
            return self.url_result('5min:%s' % mobj.group('id'), 'FiveMin')
 | 
			
		||||
 | 
			
		||||
        def check_video(vurl):
 | 
			
		||||
            if YoutubeIE.suitable(vurl):
 | 
			
		||||
                return True
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user