]> jfr.im git - yt-dlp.git/blame - yt_dlp/extractor/tunein.py
Completely change project name to yt-dlp (#85)
[yt-dlp.git] / yt_dlp / extractor / tunein.py
CommitLineData
2c25a2bd
NJ
1# coding: utf-8
2from __future__ import unicode_literals
3
882c6992 4import re
2c25a2bd
NJ
5
6from .common import InfoExtractor
7from ..utils import ExtractorError
bd3f9eca 8from ..compat import compat_urlparse
2c25a2bd
NJ
9
10
bd3f9eca 11class TuneInBaseIE(InfoExtractor):
12 _API_BASE_URL = 'http://tunein.com/tuner/tune/'
2c25a2bd 13
027e2312
S
14 @staticmethod
15 def _extract_urls(webpage):
16 return re.findall(
17 r'<iframe[^>]+src=["\'](?P<url>(?:https?://)?tunein\.com/embed/player/[pst]\d+)',
18 webpage)
19
2c25a2bd 20 def _real_extract(self, url):
bd3f9eca 21 content_id = self._match_id(url)
22
23 content_info = self._download_json(
24 self._API_BASE_URL + self._API_URL_QUERY % content_id,
25 content_id, note='Downloading JSON metadata')
26
27 title = content_info['Title']
28 thumbnail = content_info.get('Logo')
29 location = content_info.get('Location')
30 streams_url = content_info.get('StreamUrl')
2c25a2bd 31 if not streams_url:
bd3f9eca 32 raise ExtractorError('No downloadable streams found', expected=True)
33 if not streams_url.startswith('http://'):
34 streams_url = compat_urlparse.urljoin(url, streams_url)
35
882c6992
S
36 streams = self._download_json(
37 streams_url, content_id, note='Downloading stream data',
38 transform_source=lambda s: re.sub(r'^\s*\((.*)\);\s*$', r'\1', s))['Streams']
2c25a2bd
NJ
39
40 is_live = None
41 formats = []
42 for stream in streams:
43 if stream.get('Type') == 'Live':
44 is_live = True
ec3a6a31
PH
45 reliability = stream.get('Reliability')
46 format_note = (
47 'Reliability: %d%%' % reliability
48 if reliability is not None else None)
2c25a2bd 49 formats.append({
ec3a6a31
PH
50 'preference': (
51 0 if reliability is None or reliability > 90
52 else 1),
2c25a2bd 53 'abr': stream.get('Bandwidth'),
ec3a6a31 54 'ext': stream.get('MediaType').lower(),
2c25a2bd
NJ
55 'acodec': stream.get('MediaType'),
56 'vcodec': 'none',
57 'url': stream.get('Url'),
ec3a6a31
PH
58 'source_preference': reliability,
59 'format_note': format_note,
2c25a2bd
NJ
60 })
61 self._sort_formats(formats)
62
63 return {
bd3f9eca 64 'id': content_id,
a93ce61b 65 'title': self._live_title(title) if is_live else title,
2c25a2bd
NJ
66 'formats': formats,
67 'thumbnail': thumbnail,
68 'location': location,
69 'is_live': is_live,
70 }
bd3f9eca 71
72
73class TuneInClipIE(TuneInBaseIE):
74 IE_NAME = 'tunein:clip'
75 _VALID_URL = r'https?://(?:www\.)?tunein\.com/station/.*?audioClipId\=(?P<id>\d+)'
76 _API_URL_QUERY = '?tuneType=AudioClip&audioclipId=%s'
77
027e2312
S
78 _TESTS = [{
79 'url': 'http://tunein.com/station/?stationId=246119&audioClipId=816',
80 'md5': '99f00d772db70efc804385c6b47f4e77',
81 'info_dict': {
82 'id': '816',
83 'title': '32m',
84 'ext': 'mp3',
bd3f9eca 85 },
027e2312 86 }]
bd3f9eca 87
88
89class TuneInStationIE(TuneInBaseIE):
90 IE_NAME = 'tunein:station'
027e2312 91 _VALID_URL = r'https?://(?:www\.)?tunein\.com/(?:radio/.*?-s|station/.*?StationId=|embed/player/s)(?P<id>\d+)'
bd3f9eca 92 _API_URL_QUERY = '?tuneType=Station&stationId=%s'
93
94 @classmethod
95 def suitable(cls, url):
96 return False if TuneInClipIE.suitable(url) else super(TuneInStationIE, cls).suitable(url)
97
027e2312
S
98 _TESTS = [{
99 'url': 'http://tunein.com/radio/Jazz24-885-s34682/',
100 'info_dict': {
101 'id': '34682',
102 'title': 'Jazz 24 on 88.5 Jazz24 - KPLU-HD2',
103 'ext': 'mp3',
104 'location': 'Tacoma, WA',
105 },
106 'params': {
107 'skip_download': True, # live stream
bd3f9eca 108 },
027e2312
S
109 }, {
110 'url': 'http://tunein.com/embed/player/s6404/',
111 'only_matching': True,
112 }]
bd3f9eca 113
114
115class TuneInProgramIE(TuneInBaseIE):
116 IE_NAME = 'tunein:program'
027e2312 117 _VALID_URL = r'https?://(?:www\.)?tunein\.com/(?:radio/.*?-p|program/.*?ProgramId=|embed/player/p)(?P<id>\d+)'
bd3f9eca 118 _API_URL_QUERY = '?tuneType=Program&programId=%s'
119
027e2312
S
120 _TESTS = [{
121 'url': 'http://tunein.com/radio/Jazz-24-p2506/',
122 'info_dict': {
123 'id': '2506',
124 'title': 'Jazz 24 on 91.3 WUKY-HD3',
125 'ext': 'mp3',
126 'location': 'Lexington, KY',
bd3f9eca 127 },
027e2312
S
128 'params': {
129 'skip_download': True, # live stream
130 },
131 }, {
132 'url': 'http://tunein.com/embed/player/p191660/',
133 'only_matching': True,
134 }]
bd3f9eca 135
136
137class TuneInTopicIE(TuneInBaseIE):
138 IE_NAME = 'tunein:topic'
027e2312 139 _VALID_URL = r'https?://(?:www\.)?tunein\.com/(?:topic/.*?TopicId=|embed/player/t)(?P<id>\d+)'
bd3f9eca 140 _API_URL_QUERY = '?tuneType=Topic&topicId=%s'
141
027e2312
S
142 _TESTS = [{
143 'url': 'http://tunein.com/topic/?TopicId=101830576',
144 'md5': 'c31a39e6f988d188252eae7af0ef09c9',
145 'info_dict': {
146 'id': '101830576',
147 'title': 'Votez pour moi du 29 octobre 2015 (29/10/15)',
148 'ext': 'mp3',
149 'location': 'Belgium',
bd3f9eca 150 },
027e2312
S
151 }, {
152 'url': 'http://tunein.com/embed/player/t101830576/',
153 'only_matching': True,
154 }]
bd3f9eca 155
156
157class TuneInShortenerIE(InfoExtractor):
158 IE_NAME = 'tunein:shortener'
159 IE_DESC = False # Do not list
160 _VALID_URL = r'https?://tun\.in/(?P<id>[A-Za-z0-9]+)'
161
162 _TEST = {
163 # test redirection
164 'url': 'http://tun.in/ser7s',
165 'info_dict': {
166 'id': '34682',
167 'title': 'Jazz 24 on 88.5 Jazz24 - KPLU-HD2',
168 'ext': 'mp3',
169 'location': 'Tacoma, WA',
170 },
171 'params': {
172 'skip_download': True, # live stream
173 },
174 }
175
176 def _real_extract(self, url):
177 redirect_id = self._match_id(url)
178 # The server doesn't support HEAD requests
179 urlh = self._request_webpage(
180 url, redirect_id, note='Downloading redirect page')
181 url = urlh.geturl()
182 self.to_screen('Following redirect: %s' % url)
183 return self.url_result(url)