mirror of
				https://github.com/ytdl-org/youtube-dl.git
				synced 2025-10-29 09:26:20 -07:00 
			
		
		
		
	[extractor/generic] Add support for tvc embeds
This commit is contained in:
		| @@ -34,6 +34,7 @@ from .brightcove import BrightcoveIE | |||||||
| from .nbc import NBCSportsVPlayerIE | from .nbc import NBCSportsVPlayerIE | ||||||
| from .ooyala import OoyalaIE | from .ooyala import OoyalaIE | ||||||
| from .rutv import RUTVIE | from .rutv import RUTVIE | ||||||
|  | from .tvc import TVCEmbedIE | ||||||
| from .sportbox import SportBoxEmbedIE | from .sportbox import SportBoxEmbedIE | ||||||
| from .smotri import SmotriIE | from .smotri import SmotriIE | ||||||
| from .condenast import CondeNastIE | from .condenast import CondeNastIE | ||||||
| @@ -1301,6 +1302,11 @@ class GenericIE(InfoExtractor): | |||||||
|         if rutv_url: |         if rutv_url: | ||||||
|             return self.url_result(rutv_url, 'RUTV') |             return self.url_result(rutv_url, 'RUTV') | ||||||
|  |  | ||||||
|  |         # Look for embedded TVC player | ||||||
|  |         rutv_url = TVCEmbedIE._extract_url(webpage) | ||||||
|  |         if rutv_url: | ||||||
|  |             return self.url_result(rutv_url, 'TVCEmbed') | ||||||
|  |  | ||||||
|         # Look for embedded SportBox player |         # Look for embedded SportBox player | ||||||
|         sportbox_urls = SportBoxEmbedIE._extract_urls(webpage) |         sportbox_urls = SportBoxEmbedIE._extract_urls(webpage) | ||||||
|         if sportbox_urls: |         if sportbox_urls: | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user