]>
 
 
Raphaël G. Git Repositories - youtubedl/blob - youtube_dl/extractor/orf.py 
 
 
 
 
 
 
 
 
   2  from  __future__ 
import  unicode_literals
 
   6  from  . common 
import  InfoExtractor
 
   7  from  .. compat 
import  compat_str
 
  20  class  ORFTVthekIE ( InfoExtractor
):  
  21      IE_NAME 
=  'orf:tvthek'  
  22      IE_DESC 
=  'ORF TVthek'  
  23      _VALID_URL 
=  r
'https?://tvthek\.orf\.at/(?:[^/]+/)+(?P<id>\d+)'  
  26          'url' :  'http://tvthek.orf.at/program/Aufgetischt/2745173/Aufgetischt-Mit-der-Steirischen-Tafelrunde/8891389' ,  
  28              'md5' :  '2942210346ed779588f428a92db88712' ,  
  32                  'title' :  'Aufgetischt: Mit der Steirischen Tafelrunde' ,  
  33                  'description' :  'md5:c1272f0245537812d4e36419c207b67d' ,  
  35                  'upload_date' :  '20141208' ,  
  38          'skip' :  'Blocked outside of Austria / Germany' ,  
  40          'url' :  'http://tvthek.orf.at/topic/Im-Wandel-der-Zeit/8002126/Best-of-Ingrid-Thurnher/7982256' ,  
  44              'title' :  'Best of Ingrid Thurnher' ,  
  45              'upload_date' :  '20140527' ,  
  46              'description' :  'Viele Jahre war Ingrid Thurnher das "Gesicht" der ZIB 2. Vor ihrem Wechsel zur ZIB 2 im Jahr 1995 moderierte sie unter anderem "Land und Leute", "Österreich-Bild" und "Niederösterreich heute".' ,  
  49              'skip_download' :  True ,   # rtsp downloads  
  51          '_skip' :  'Blocked outside of Austria / Germany' ,  
  53          'url' :  'http://tvthek.orf.at/topic/Fluechtlingskrise/10463081/Heimat-Fremde-Heimat/13879132/Senioren-betreuen-Migrantenkinder/13879141' ,  
  54          'skip_download' :  True ,  
  56          'url' :  'http://tvthek.orf.at/profile/Universum/35429' ,  
  57          'skip_download' :  True ,  
  60      def  _real_extract ( self
,  url
):  
  61          playlist_id 
=  self
._ match
_ id
( url
)  
  62          webpage 
=  self
._ download
_ webpage
( url
,  playlist_id
)  
  64          data_jsb 
=  self
._ parse
_ json
(  
  66                  r
'<div[^>]+class=(["\' ]).* ?VideoPlaylist
.* ?\
1 [ ^
>]+ data
- jsb
=([ " \' ])(?P<json>.+?)\2',  
  67                  webpage, 'playlist', group='json'),  
  68              playlist_id, transform_source=unescapeHTML)['playlist']['videos']  
  70          def quality_to_int(s):  
  71              m = re.search('([0-9]+)', s)  
  74              return int(m.group(1))  
  78              video_id, title = sd.get('id'), sd.get('title')  
  79              if not video_id or not title:  
  81              video_id = compat_str(video_id)  
  83                  'preference': -10 if fd['delivery'] == 'hls' else None,  
  84                  'format_id': ' %s-%s-%s ' % (  
  85                      fd['delivery'], fd['quality'], fd['quality_string']),  
  87                  'protocol': fd['protocol'],  
  88                  'quality': quality_to_int(fd['quality']),  
  89              } for fd in sd['sources']]  
  91              # Check for geoblocking.  
  92              # There is a property is_geoprotection, but that's always false  
  93              geo_str = sd.get('geoprotection_string')  
  99                          if re.match(r'^https?://.*\.mp4$', f['url']))  
 100                  except StopIteration:  
 103                      req = HEADRequest(http_url)  
 104                      self._request_webpage(  
 106                          note='Testing for geoblocking',  
 108                              'This video seems to be blocked outside of  %s . '  
 109                              'You may want to try the streaming-* formats.')  
 113              self._check_formats(formats, video_id)  
 114              self._sort_formats(formats)  
 117              for sub in sd.get('subtitles', []):  
 118                  sub_src = sub.get('src')  
 121                  subtitles.setdefault(sub.get('lang', 'de-AT'), []).append({  
 125              upload_date = unified_strdate(sd.get('created_date'))  
 131                  'subtitles': subtitles,  
 132                  'description': sd.get('description'),  
 133                  'duration': int_or_none(sd.get('duration_in_seconds')),  
 134                  'upload_date': upload_date,  
 135                  'thumbnail': sd.get('image_full_url'),  
 145  class ORFRadioIE(InfoExtractor):  
 146      def _real_extract(self, url):  
 147          mobj = re.match(self._VALID_URL, url)  
 148          station = mobj.group('station')  
 149          show_date = mobj.group('date')  
 150          show_id = mobj.group('show')  
 153              show_id = '4 %s ' % show_id  
 155          data = self._download_json(  
 156              'http://audioapi.orf.at/ %s /api/json/current/broadcast/ %s / %s ' % (station, show_id, show_date),  
 160          def extract_entry_dict(info, title, subtitle):  
 162                  'id': info['loopStreamId'].replace('.mp3', ''),  
 163                  'url': 'http://loopstream01.apa.at/?channel= %s &id= %s ' % (station, info['loopStreamId']),  
 165                  'description': subtitle,  
 166                  'duration': (info['end'] - info['start']) / 1000,  
 167                  'timestamp': info['start'] / 1000,  
 171          entries = [extract_entry_dict(t, data['title'], data['subtitle']) for t in data['streams']]  
 176              'title': data['title'],  
 177              'description': data['subtitle'],  
 182  class ORFFM4IE(ORFRadioIE):  
 184      IE_DESC = 'radio FM4'  
 185      _VALID_URL = r'https?://(?P<station>fm4)\.orf\.at/player/(?P<date>[0-9]+)/(?P<show>\w+)'  
 188          'url': 'http://fm4.orf.at/player/20170107/CC',  
 189          'md5': '2b0be47375432a7ef104453432a19212',  
 191              'id': '2017-01-07_2100_tl_54_7DaysSat18_31295',  
 193              'title': 'Solid Steel Radioshow',  
 194              'description': 'Die Mixshow von Coldcut und Ninja Tune.',  
 196              'timestamp': 1483819257,  
 197              'upload_date': '20170107',  
 199          'skip': 'Shows from ORF radios are only available for 7 days.'  
 203  class ORFOE1IE(ORFRadioIE):  
 205      IE_DESC = 'Radio Österreich 1'  
 206      _VALID_URL = r'https?://(?P<station>oe1)\.orf\.at/player/(?P<date>[0-9]+)/(?P<show>\w+)'  
 209          'url': 'http://oe1.orf.at/player/20170108/456544',  
 210          'md5': '34d8a6e67ea888293741c86a099b745b',  
 212              'id': '2017-01-08_0759_tl_51_7DaysSun6_256141',  
 214              'title': 'Morgenjournal',  
 216              'timestamp': 1483858796,  
 217              'upload_date': '20170108',  
 219          'skip': 'Shows from ORF radios are only available for 7 days.'  
 223  class ORFIPTVIE(InfoExtractor):  
 225      IE_DESC = 'iptv.ORF.at'  
 226      _VALID_URL = r'https?://iptv\.orf\.at/(?:#/)?stories/(?P<id>\d+)'  
 229          'url': 'http://iptv.orf.at/stories/2275236/',  
 230          'md5': 'c8b22af4718a4b4af58342529453e3e5',  
 234              'title': 'Weitere Evakuierungen um Vulkan Calbuco',  
 235              'description': 'md5:d689c959bdbcf04efeddedbf2299d633',  
 237              'thumbnail': r're:^https?://.*\.jpg$',  
 238              'upload_date': '20150425',  
 242      def _real_extract(self, url):  
 243          story_id = self._match_id(url)  
 245          webpage = self._download_webpage(  
 246              'http://iptv.orf.at/stories/ %s ' % story_id, story_id)  
 248          video_id = self._search_regex(  
 249              r'data-video(?:id)?=" ( \d
+) "', webpage, 'video id')  
 251          data = self._download_json(  
 252              'http://bits.orf.at/filehandler/static-api/json/current/data.json?file= %s ' % video_id,  
 255          duration = float_or_none(data['duration'], 1000)  
 257          video = data['sources']['default']  
 258          load_balancer_url = video['loadBalancerUrl']  
 259          abr = int_or_none(video.get('audioBitrate'))  
 260          vbr = int_or_none(video.get('bitrate'))  
 261          fps = int_or_none(video.get('videoFps'))  
 262          width = int_or_none(video.get('videoWidth'))  
 263          height = int_or_none(video.get('videoHeight'))  
 264          thumbnail = video.get('preview')  
 266          rendition = self._download_json(  
 267              load_balancer_url, video_id, transform_source=strip_jsonp)  
 278          for format_id, format_url in rendition['redirect'].items():  
 279              if format_id == 'rtmp':  
 283                      'format_id': format_id,  
 286              elif determine_ext(format_url) == 'f4m':  
 287                  formats.extend(self._extract_f4m_formats(  
 288                      format_url, video_id, f4m_id=format_id))  
 289              elif determine_ext(format_url) == 'm3u8':  
 290                  formats.extend(self._extract_m3u8_formats(  
 291                      format_url, video_id, 'mp4', m3u8_id=format_id))  
 294          self._sort_formats(formats)  
 296          title = remove_end(self._og_search_title(webpage), ' - iptv.ORF.at')  
 297          description = self._og_search_description(webpage)  
 298          upload_date = unified_strdate(self._html_search_meta(  
 299              'dc.date', webpage, 'upload date'))  
 304              'description': description,  
 305              'duration': duration,  
 306              'thumbnail': thumbnail,  
 307              'upload_date': upload_date,