mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-10-31 14:45:14 +00:00 
			
		
		
		
	Completely change project name to yt-dlp (#85)
* All modules and binary names are changed * All documentation references changed * yt-dlp no longer loads youtube-dlc config files * All URLs changed to point to organization account Co-authored-by: Pccode66 Co-authored-by: pukkandan
This commit is contained in:
		
							
								
								
									
										103
									
								
								yt_dlp/extractor/urplay.py
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										103
									
								
								yt_dlp/extractor/urplay.py
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,103 @@ | ||||
| # coding: utf-8 | ||||
| from __future__ import unicode_literals | ||||
|  | ||||
| from .common import InfoExtractor | ||||
| from ..utils import ( | ||||
|     dict_get, | ||||
|     int_or_none, | ||||
|     unified_timestamp, | ||||
| ) | ||||
|  | ||||
|  | ||||
| class URPlayIE(InfoExtractor): | ||||
|     _VALID_URL = r'https?://(?:www\.)?ur(?:play|skola)\.se/(?:program|Produkter)/(?P<id>[0-9]+)' | ||||
|     _TESTS = [{ | ||||
|         'url': 'https://urplay.se/program/203704-ur-samtiden-livet-universum-och-rymdens-markliga-musik-om-vetenskap-kritiskt-tankande-och-motstand', | ||||
|         'md5': 'ff5b0c89928f8083c74bbd5099c9292d', | ||||
|         'info_dict': { | ||||
|             'id': '203704', | ||||
|             'ext': 'mp4', | ||||
|             'title': 'UR Samtiden - Livet, universum och rymdens märkliga musik : Om vetenskap, kritiskt tänkande och motstånd', | ||||
|             'description': 'md5:5344508a52aa78c1ced6c1b8b9e44e9a', | ||||
|             'timestamp': 1513292400, | ||||
|             'upload_date': '20171214', | ||||
|         }, | ||||
|     }, { | ||||
|         'url': 'https://urskola.se/Produkter/190031-Tripp-Trapp-Trad-Sovkudde', | ||||
|         'info_dict': { | ||||
|             'id': '190031', | ||||
|             'ext': 'mp4', | ||||
|             'title': 'Tripp, Trapp, Träd : Sovkudde', | ||||
|             'description': 'md5:b86bffdae04a7e9379d1d7e5947df1d1', | ||||
|             'timestamp': 1440086400, | ||||
|             'upload_date': '20150820', | ||||
|         }, | ||||
|     }, { | ||||
|         'url': 'http://urskola.se/Produkter/155794-Smasagor-meankieli-Grodan-i-vida-varlden', | ||||
|         'only_matching': True, | ||||
|     }] | ||||
|  | ||||
|     def _real_extract(self, url): | ||||
|         video_id = self._match_id(url) | ||||
|         url = url.replace('skola.se/Produkter', 'play.se/program') | ||||
|         webpage = self._download_webpage(url, video_id) | ||||
|         urplayer_data = self._parse_json(self._html_search_regex( | ||||
|             r'data-react-class="routes/Product/components/ProgramContainer/ProgramContainer"[^>]+data-react-props="({.+?})"', | ||||
|             webpage, 'urplayer data'), video_id)['accessibleEpisodes'][0] | ||||
|         episode = urplayer_data['title'] | ||||
|  | ||||
|         host = self._download_json('http://streaming-loadbalancer.ur.se/loadbalancer.json', video_id)['redirect'] | ||||
|         formats = [] | ||||
|         urplayer_streams = urplayer_data.get('streamingInfo', {}) | ||||
|  | ||||
|         for k, v in urplayer_streams.get('raw', {}).items(): | ||||
|             if not (k in ('sd', 'hd') and isinstance(v, dict)): | ||||
|                 continue | ||||
|             file_http = v.get('location') | ||||
|             if file_http: | ||||
|                 formats.extend(self._extract_wowza_formats( | ||||
|                     'http://%s/%splaylist.m3u8' % (host, file_http), | ||||
|                     video_id, skip_protocols=['f4m', 'rtmp', 'rtsp'])) | ||||
|         self._sort_formats(formats) | ||||
|  | ||||
|         subtitles = {} | ||||
|         subs = urplayer_streams.get("sweComplete", {}).get("tt", {}).get("location") | ||||
|         if subs: | ||||
|             subtitles.setdefault('Svenska', []).append({ | ||||
|                 'url': subs, | ||||
|             }) | ||||
|  | ||||
|         image = urplayer_data.get('image') or {} | ||||
|         thumbnails = [] | ||||
|         for k, v in image.items(): | ||||
|             t = { | ||||
|                 'id': k, | ||||
|                 'url': v, | ||||
|             } | ||||
|             wh = k.split('x') | ||||
|             if len(wh) == 2: | ||||
|                 t.update({ | ||||
|                     'width': int_or_none(wh[0]), | ||||
|                     'height': int_or_none(wh[1]), | ||||
|                 }) | ||||
|             thumbnails.append(t) | ||||
|  | ||||
|         series = urplayer_data.get('series') or {} | ||||
|         series_title = dict_get(series, ('seriesTitle', 'title')) or dict_get(urplayer_data, ('seriesTitle', 'mainTitle')) | ||||
|  | ||||
|         return { | ||||
|             'id': video_id, | ||||
|             'subtitles': subtitles, | ||||
|             'title': '%s : %s' % (series_title, episode) if series_title else episode, | ||||
|             'description': urplayer_data.get('description'), | ||||
|             'thumbnails': thumbnails, | ||||
|             'timestamp': unified_timestamp(urplayer_data.get('publishedAt')), | ||||
|             'series': series_title, | ||||
|             'formats': formats, | ||||
|             'duration': int_or_none(urplayer_data.get('duration')), | ||||
|             'categories': urplayer_data.get('categories'), | ||||
|             'tags': urplayer_data.get('keywords'), | ||||
|             'season': series.get('label'), | ||||
|             'episode': episode, | ||||
|             'episode_number': int_or_none(urplayer_data.get('episodeNumber')), | ||||
|         } | ||||
		Reference in New Issue
	
	Block a user
	 Pccode66
					Pccode66