[ceskatelevize] Simplify

This commit is contained in:
Sergey M․ 2014-03-01 23:05:33 +07:00
parent 7d78f0cc48
commit 5a0b26252e
1 changed files with 2 additions and 3 deletions

View File

@ -2,7 +2,6 @@
from __future__ import unicode_literals
import re
import json
from .common import InfoExtractor
from ..utils import (
@ -87,9 +86,9 @@ class CeskaTelevizeIE(InfoExtractor):
req.add_header('X-Requested-With', 'XMLHttpRequest')
req.add_header('Referer', url)
playlistpage = self._download_webpage(req, video_id)
playlistpage = self._download_json(req, video_id)
req = compat_urllib_request.Request(compat_urllib_parse.unquote(json.loads(playlistpage)['url']))
req = compat_urllib_request.Request(compat_urllib_parse.unquote(playlistpage['url']))
req.add_header('Referer', url)
playlist = self._download_xml(req, video_id)