[uktvplay] Add new extractor(closes #11027)
This commit is contained in:
		
							parent
							
								
									b1c357975d
								
							
						
					
					
						commit
						f59d1146c0
					
				@ -1024,6 +1024,7 @@ from .udemy import (
 | 
			
		||||
    UdemyCourseIE
 | 
			
		||||
)
 | 
			
		||||
from .udn import UDNEmbedIE
 | 
			
		||||
from .uktvplay import UKTVPlayIE
 | 
			
		||||
from .digiteka import DigitekaIE
 | 
			
		||||
from .unistra import UnistraIE
 | 
			
		||||
from .uol import UOLIE
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										33
									
								
								youtube_dl/extractor/uktvplay.py
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										33
									
								
								youtube_dl/extractor/uktvplay.py
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,33 @@
 | 
			
		||||
# coding: utf-8
 | 
			
		||||
from __future__ import unicode_literals
 | 
			
		||||
 | 
			
		||||
from .common import InfoExtractor
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
class UKTVPlayIE(InfoExtractor):
 | 
			
		||||
    _VALID_URL = r'https?://uktvplay\.uktv\.co\.uk/.+?\?.*?\bvideo=(?P<id>\d+)'
 | 
			
		||||
    _TEST = {
 | 
			
		||||
        'url': 'https://uktvplay.uktv.co.uk/shows/world-at-war/c/200/watch-online/?video=2117008346001',
 | 
			
		||||
        'md5': '',
 | 
			
		||||
        'info_dict': {
 | 
			
		||||
            'id': '2117008346001',
 | 
			
		||||
            'ext': 'mp4',
 | 
			
		||||
            'title': 'Pincers',
 | 
			
		||||
            'description': 'Pincers',
 | 
			
		||||
            'uploader_id': '1242911124001',
 | 
			
		||||
            'upload_date': '20130124',
 | 
			
		||||
            'timestamp': 1359049267,
 | 
			
		||||
        },
 | 
			
		||||
        'params': {
 | 
			
		||||
            # m3u8 download
 | 
			
		||||
            'skip_download': True,
 | 
			
		||||
        },
 | 
			
		||||
        'expected_warnings': ['Failed to download MPD manifest']
 | 
			
		||||
    }
 | 
			
		||||
    BRIGHTCOVE_URL_TEMPLATE = 'http://players.brightcove.net/1242911124001/H1xnMOqP_default/index.html?videoId=%s'
 | 
			
		||||
 | 
			
		||||
    def _real_extract(self, url):
 | 
			
		||||
        video_id = self._match_id(url)
 | 
			
		||||
        return self.url_result(
 | 
			
		||||
            self.BRIGHTCOVE_URL_TEMPLATE % video_id,
 | 
			
		||||
            'BrightcoveNew', video_id)
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user