youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit 1434bffa1ff2fb1e4d80efc900a13a3541923119
parent 94aa25b99541be80a975fd48c07d096fc8c3203c
Author: Naglis Jonaitis <njonaitis@gmail.com>
Date:   Mon,  1 Dec 2014 18:10:04 +0200

[tunein] Use station API

Diffstat:
Myoutube_dl/extractor/tunein.py | 10++++------
1 file changed, 4 insertions(+), 6 deletions(-)

diff --git a/youtube_dl/extractor/tunein.py b/youtube_dl/extractor/tunein.py @@ -19,6 +19,7 @@ class TuneInIE(InfoExtractor): |tun\.in/(?P<redirect_id>[A-Za-z0-9]+) ) ''' + _API_URL_TEMPLATE = 'http://tunein.com/tuner/tune/?stationId={0:}&tuneType=Station' _INFO_DICT = { 'id': '34682', @@ -56,13 +57,10 @@ class TuneInIE(InfoExtractor): mobj = re.match(self._VALID_URL, url) station_id = mobj.group('id') - webpage = self._download_webpage( - url, station_id, note='Downloading station webpage') + station_info = self._download_json( + self._API_URL_TEMPLATE.format(station_id), + station_id, note='Downloading station JSON') - payload = self._html_search_regex( - r'(?m)TuneIn\.payload\s*=\s*(\{[^$]+?)$', webpage, 'JSON data') - json_data = json.loads(payload) - station_info = json_data['Station']['broadcast'] title = station_info['Title'] thumbnail = station_info.get('Logo') location = station_info.get('Location')