mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-10-31 14:45:14 +00:00 
			
		
		
		
	[skip travis] adding automerge support
basically copying content of youtube_dl folder to youtube_dlc and excluding the youtube_dl folder when compiling
This commit is contained in:
		
							
								
								
									
										50
									
								
								youtube_dl/extractor/rozhlas.py
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										50
									
								
								youtube_dl/extractor/rozhlas.py
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,50 @@ | ||||
| # coding: utf-8 | ||||
| from __future__ import unicode_literals | ||||
|  | ||||
| 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', | ||||
|         } | ||||
		Reference in New Issue
	
	Block a user
	 Unknown
					Unknown