Browse Source

[tunein] Fix stream data extraction (Closes #8899, closes #8924)

totalwebcasting
Sergey M․ 8 years ago
parent
commit
882c699296
1 changed files with 4 additions and 5 deletions
  1. +4
    -5
      youtube_dl/extractor/tunein.py

+ 4
- 5
youtube_dl/extractor/tunein.py View File

@ -1,7 +1,7 @@
# coding: utf-8
from __future__ import unicode_literals
import json
import re
from .common import InfoExtractor
from ..utils import ExtractorError
@ -27,10 +27,9 @@ class TuneInBaseIE(InfoExtractor):
if not streams_url.startswith('http://'):
streams_url = compat_urlparse.urljoin(url, streams_url)
stream_data = self._download_webpage(
streams_url, content_id, note='Downloading stream data')
streams = json.loads(self._search_regex(
r'\((.*)\);', stream_data, 'stream info'))['Streams']
streams = self._download_json(
streams_url, content_id, note='Downloading stream data',
transform_source=lambda s: re.sub(r'^\s*\((.*)\);\s*$', r'\1', s))['Streams']
is_live = None
formats = []


Loading…
Cancel
Save