mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-11-03 16:15:14 +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
		
			
				
	
	
		
			48 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			48 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
from .common import InfoExtractor
 | 
						|
from ..utils import (
 | 
						|
    int_or_none,
 | 
						|
    remove_start,
 | 
						|
)
 | 
						|
 | 
						|
 | 
						|
class RozhlasIE(InfoExtractor):
 | 
						|
    _VALID_URL = r'https?://(?:www\.)?prehravac\.rozhlas\.cz/audio/(?P<id>[0-9]+)'
 | 
						|
    _TESTS = [{
 | 
						|
        'url': 'http://prehravac.rozhlas.cz/audio/3421320',
 | 
						|
        'md5': '504c902dbc9e9a1fd50326eccf02a7e2',
 | 
						|
        'info_dict': {
 | 
						|
            'id': '3421320',
 | 
						|
            'ext': 'mp3',
 | 
						|
            'title': 'Echo Pavla Klusáka (30.06.2015 21:00)',
 | 
						|
            'description': 'Osmdesátiny Terryho Rileyho jsou skvělou příležitostí proletět se elektronickými i akustickými díly zakladatatele minimalismu, který je aktivní už přes padesát let'
 | 
						|
        }
 | 
						|
    }, {
 | 
						|
        'url': 'http://prehravac.rozhlas.cz/audio/3421320/embed',
 | 
						|
        'only_matching': True,
 | 
						|
    }]
 | 
						|
 | 
						|
    def _real_extract(self, url):
 | 
						|
        audio_id = self._match_id(url)
 | 
						|
 | 
						|
        webpage = self._download_webpage(
 | 
						|
            'http://prehravac.rozhlas.cz/audio/%s' % audio_id, audio_id)
 | 
						|
 | 
						|
        title = self._html_search_regex(
 | 
						|
            r'<h3>(.+?)</h3>\s*<p[^>]*>.*?</p>\s*<div[^>]+id=["\']player-track',
 | 
						|
            webpage, 'title', default=None) or remove_start(
 | 
						|
            self._og_search_title(webpage), 'Radio Wave - ')
 | 
						|
        description = self._html_search_regex(
 | 
						|
            r'<p[^>]+title=(["\'])(?P<url>(?:(?!\1).)+)\1[^>]*>.*?</p>\s*<div[^>]+id=["\']player-track',
 | 
						|
            webpage, 'description', fatal=False, group='url')
 | 
						|
        duration = int_or_none(self._search_regex(
 | 
						|
            r'data-duration=["\'](\d+)', webpage, 'duration', default=None))
 | 
						|
 | 
						|
        return {
 | 
						|
            'id': audio_id,
 | 
						|
            'url': 'http://media.rozhlas.cz/_audio/%s.mp3' % audio_id,
 | 
						|
            'title': title,
 | 
						|
            'description': description,
 | 
						|
            'duration': duration,
 | 
						|
            'vcodec': 'none',
 | 
						|
        }
 |