mirror of
				https://gitlab.com/ytdl-org/youtube-dl.git
				synced 2025-11-04 08:47:06 -05:00 
			
		
		
		
	[funimation] Extend _VALID_URL to match promotional videos
This commit is contained in:
		@@ -15,7 +15,7 @@ from ..utils import (
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
class FunimationIE(InfoExtractor):
 | 
					class FunimationIE(InfoExtractor):
 | 
				
			||||||
    _VALID_URL = r'https?://(?:www\.)?funimation\.com/shows/[^/]+/videos/official/(?P<id>[^/?#&]+)'
 | 
					    _VALID_URL = r'https?://(?:www\.)?funimation\.com/shows/[^/]+/videos/(?:official|promotional)/(?P<id>[^/?#&]+)'
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    _TESTS = [{
 | 
					    _TESTS = [{
 | 
				
			||||||
        'url': 'http://www.funimation.com/shows/air/videos/official/breeze',
 | 
					        'url': 'http://www.funimation.com/shows/air/videos/official/breeze',
 | 
				
			||||||
@@ -37,6 +37,9 @@ class FunimationIE(InfoExtractor):
 | 
				
			|||||||
            'description': 'md5:b602bdc15eef4c9bbb201bb6e6a4a2dd',
 | 
					            'description': 'md5:b602bdc15eef4c9bbb201bb6e6a4a2dd',
 | 
				
			||||||
            'thumbnail': 're:https?://.*\.jpg',
 | 
					            'thumbnail': 're:https?://.*\.jpg',
 | 
				
			||||||
        },
 | 
					        },
 | 
				
			||||||
 | 
					    }, {
 | 
				
			||||||
 | 
					        'url': 'http://www.funimation.com/shows/attack-on-titan-junior-high/videos/promotional/broadcast-dub-preview',
 | 
				
			||||||
 | 
					        'only_matching': True,
 | 
				
			||||||
    }]
 | 
					    }]
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    def _login(self):
 | 
					    def _login(self):
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user