mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-11-04 08:35:12 +00:00 
			
		
		
		
	Using https://github.com/asottile/pyupgrade 1. `__future__` imports and `coding: utf-8` were removed 2. Files were rewritten with `pyupgrade --py36-plus --keep-percent-format` 3. f-strings were cherry-picked from `pyupgrade --py36-plus` Extractors are left untouched (except removing header) to avoid unnecessary merge conflicts
		
			
				
	
	
		
			54 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			54 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
from .common import InfoExtractor
 | 
						|
from .streamable import StreamableIE
 | 
						|
 | 
						|
 | 
						|
class FootyRoomIE(InfoExtractor):
 | 
						|
    _VALID_URL = r'https?://footyroom\.com/matches/(?P<id>\d+)'
 | 
						|
    _TESTS = [{
 | 
						|
        'url': 'http://footyroom.com/matches/79922154/hull-city-vs-chelsea/review',
 | 
						|
        'info_dict': {
 | 
						|
            'id': '79922154',
 | 
						|
            'title': 'VIDEO Hull City 0 - 2 Chelsea',
 | 
						|
        },
 | 
						|
        'playlist_count': 2,
 | 
						|
        'add_ie': [StreamableIE.ie_key()],
 | 
						|
    }, {
 | 
						|
        'url': 'http://footyroom.com/matches/75817984/georgia-vs-germany/review',
 | 
						|
        'info_dict': {
 | 
						|
            'id': '75817984',
 | 
						|
            'title': 'VIDEO Georgia 0 - 2 Germany',
 | 
						|
        },
 | 
						|
        'playlist_count': 1,
 | 
						|
        'add_ie': ['Playwire']
 | 
						|
    }]
 | 
						|
 | 
						|
    def _real_extract(self, url):
 | 
						|
        playlist_id = self._match_id(url)
 | 
						|
 | 
						|
        webpage = self._download_webpage(url, playlist_id)
 | 
						|
 | 
						|
        playlist = self._parse_json(self._search_regex(
 | 
						|
            r'DataStore\.media\s*=\s*([^;]+)', webpage, 'media data'),
 | 
						|
            playlist_id)
 | 
						|
 | 
						|
        playlist_title = self._og_search_title(webpage)
 | 
						|
 | 
						|
        entries = []
 | 
						|
        for video in playlist:
 | 
						|
            payload = video.get('payload')
 | 
						|
            if not payload:
 | 
						|
                continue
 | 
						|
            playwire_url = self._html_search_regex(
 | 
						|
                r'data-config="([^"]+)"', payload,
 | 
						|
                'playwire url', default=None)
 | 
						|
            if playwire_url:
 | 
						|
                entries.append(self.url_result(self._proto_relative_url(
 | 
						|
                    playwire_url, 'http:'), 'Playwire'))
 | 
						|
 | 
						|
            streamable_url = StreamableIE._extract_url(payload)
 | 
						|
            if streamable_url:
 | 
						|
                entries.append(self.url_result(
 | 
						|
                    streamable_url, StreamableIE.ie_key()))
 | 
						|
 | 
						|
        return self.playlist_result(entries, playlist_id, playlist_title)
 |