[outsidetv] Add new extractor(closes #18774)
This commit is contained in:
		
							parent
							
								
									7c072f00d6
								
							
						
					
					
						commit
						432aba1c5e
					
				
					 2 changed files with 29 additions and 0 deletions
				
			
		| 
						 | 
					@ -829,6 +829,7 @@ from .orf import (
 | 
				
			||||||
    ORFOE1IE,
 | 
					    ORFOE1IE,
 | 
				
			||||||
    ORFIPTVIE,
 | 
					    ORFIPTVIE,
 | 
				
			||||||
)
 | 
					)
 | 
				
			||||||
 | 
					from .outsidetv import OutsideTVIE
 | 
				
			||||||
from .packtpub import (
 | 
					from .packtpub import (
 | 
				
			||||||
    PacktPubIE,
 | 
					    PacktPubIE,
 | 
				
			||||||
    PacktPubCourseIE,
 | 
					    PacktPubCourseIE,
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
							
								
								
									
										28
									
								
								youtube_dl/extractor/outsidetv.py
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										28
									
								
								youtube_dl/extractor/outsidetv.py
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
					@ -0,0 +1,28 @@
 | 
				
			||||||
 | 
					# coding: utf-8
 | 
				
			||||||
 | 
					from __future__ import unicode_literals
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					from .common import InfoExtractor
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					class OutsideTVIE(InfoExtractor):
 | 
				
			||||||
 | 
					    _VALID_URL = r'https?://(?:www\.)?outsidetv\.com/(?:[^/]+/)*?play/[a-zA-Z0-9]{8}/\d+/\d+/(?P<id>[a-zA-Z0-9]{8})'
 | 
				
			||||||
 | 
					    _TESTS = [{
 | 
				
			||||||
 | 
					        'url': 'http://www.outsidetv.com/category/snow/play/ZjQYboH6/1/10/Hdg0jukV/4',
 | 
				
			||||||
 | 
					        'md5': '192d968fedc10b2f70ec31865ffba0da',
 | 
				
			||||||
 | 
					        'info_dict': {
 | 
				
			||||||
 | 
					            'id': 'Hdg0jukV',
 | 
				
			||||||
 | 
					            'ext': 'mp4',
 | 
				
			||||||
 | 
					            'title': 'Home - Jackson Ep 1 | Arbor Snowboards',
 | 
				
			||||||
 | 
					            'description': 'md5:41a12e94f3db3ca253b04bb1e8d8f4cd',
 | 
				
			||||||
 | 
					            'upload_date': '20181225',
 | 
				
			||||||
 | 
					            'timestamp': 1545742800,
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					    }, {
 | 
				
			||||||
 | 
					        'url': 'http://www.outsidetv.com/home/play/ZjQYboH6/1/10/Hdg0jukV/4',
 | 
				
			||||||
 | 
					        'only_matching': True,
 | 
				
			||||||
 | 
					    }]
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    def _real_extract(self, url):
 | 
				
			||||||
 | 
					        jw_media_id = self._match_id(url)
 | 
				
			||||||
 | 
					        return self.url_result(
 | 
				
			||||||
 | 
					            'jwplatform:' + jw_media_id, 'JWPlatform', jw_media_id)
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue