Browse Source

[pandatv] Modernize (closes #14693)

master-ytdl-org
Sergey M․ 7 years ago
parent
commit
61fb07e156
No known key found for this signature in database GPG Key ID: 2C393E0F18A9236D
1 changed files with 4 additions and 5 deletions
  1. +4
    -5
      youtube_dl/extractor/pandatv.py

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

@ -6,7 +6,6 @@ from ..utils import (
ExtractorError,
qualities,
)
import json
class PandaTVIE(InfoExtractor):
@ -67,10 +66,10 @@ class PandaTVIE(InfoExtractor):
plflag1 = '4'
live_panda = 'live_panda' if plflag0 < 1 else ''
plflag_auth = json.loads(video_info["plflag_list"])
sign = plflag_auth["auth"]["sign"]
ts = plflag_auth["auth"]["time"]
rid = plflag_auth["auth"]["rid"]
plflag_auth = self._parse_json(video_info['plflag_list'], video_id)
sign = plflag_auth['auth']['sign']
ts = plflag_auth['auth']['time']
rid = plflag_auth['auth']['rid']
quality_key = qualities(['OD', 'HD', 'SD'])
suffix = ['_small', '_mid', '']


Loading…
Cancel
Save