[corus] Add support for bigbrothercanada.ca (#20357)
This commit is contained in:
		
							parent
							
								
									0146c6cde6
								
							
						
					
					
						commit
						a63782b581
					
				
					 1 changed files with 12 additions and 2 deletions
				
			
		| 
						 | 
					@ -13,9 +13,9 @@ class CorusIE(ThePlatformFeedIE):
 | 
				
			||||||
                        (?:www\.)?
 | 
					                        (?:www\.)?
 | 
				
			||||||
                        (?P<domain>
 | 
					                        (?P<domain>
 | 
				
			||||||
                            (?:globaltv|etcanada)\.com|
 | 
					                            (?:globaltv|etcanada)\.com|
 | 
				
			||||||
                            (?:hgtv|foodnetwork|slice|history|showcase)\.ca
 | 
					                            (?:hgtv|foodnetwork|slice|history|showcase|bigbrothercanada)\.ca
 | 
				
			||||||
                        )
 | 
					                        )
 | 
				
			||||||
                        /(?:video/|(?:[^/]+/)+(?:videos/[a-z0-9-]+-|video\.html\?.*?\bv=))
 | 
					                        /(?:video/(?:[^/]+/)?|(?:[^/]+/)+(?:videos/[a-z0-9-]+-|video\.html\?.*?\bv=))
 | 
				
			||||||
                        (?P<id>\d+)
 | 
					                        (?P<id>\d+)
 | 
				
			||||||
                    '''
 | 
					                    '''
 | 
				
			||||||
    _TESTS = [{
 | 
					    _TESTS = [{
 | 
				
			||||||
| 
						 | 
					@ -42,6 +42,12 @@ class CorusIE(ThePlatformFeedIE):
 | 
				
			||||||
    }, {
 | 
					    }, {
 | 
				
			||||||
        'url': 'http://www.showcase.ca/eyewitness/video/eyewitness++106/video.html?v=955070531919&p=1&s=da#video',
 | 
					        'url': 'http://www.showcase.ca/eyewitness/video/eyewitness++106/video.html?v=955070531919&p=1&s=da#video',
 | 
				
			||||||
        'only_matching': True,
 | 
					        'only_matching': True,
 | 
				
			||||||
 | 
					    }, {
 | 
				
			||||||
 | 
					        'url': 'http://www.bigbrothercanada.ca/video/1457812035894/',
 | 
				
			||||||
 | 
					        'only_matching': True
 | 
				
			||||||
 | 
					    }, {
 | 
				
			||||||
 | 
					        'url': 'https://www.bigbrothercanada.ca/video/big-brother-canada-704/1457812035894/',
 | 
				
			||||||
 | 
					        'only_matching': True
 | 
				
			||||||
    }]
 | 
					    }]
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    _TP_FEEDS = {
 | 
					    _TP_FEEDS = {
 | 
				
			||||||
| 
						 | 
					@ -73,6 +79,10 @@ class CorusIE(ThePlatformFeedIE):
 | 
				
			||||||
            'feed_id': '9H6qyshBZU3E',
 | 
					            'feed_id': '9H6qyshBZU3E',
 | 
				
			||||||
            'account_id': 2414426607,
 | 
					            'account_id': 2414426607,
 | 
				
			||||||
        },
 | 
					        },
 | 
				
			||||||
 | 
					        'bigbrothercanada': {
 | 
				
			||||||
 | 
					            'feed_id': 'ChQqrem0lNUp',
 | 
				
			||||||
 | 
					            'account_id': 2269680845,
 | 
				
			||||||
 | 
					        },
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    def _real_extract(self, url):
 | 
					    def _real_extract(self, url):
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue