Browse Source

[tnaflix] Fix extraction (Closes #9074)

totalwebcasting
Sergey M․ 8 years ago
parent
commit
2f2fcf1a33
1 changed files with 5 additions and 1 deletions
  1. +5
    -1
      youtube_dl/extractor/tnaflix.py

+ 5
- 1
youtube_dl/extractor/tnaflix.py View File

@ -76,7 +76,11 @@ class TNAFlixNetworkBaseIE(InfoExtractor):
webpage = self._download_webpage(url, display_id)
cfg_url = self._proto_relative_url(self._html_search_regex(
self._CONFIG_REGEX, webpage, 'flashvars.config'), 'http:')
self._CONFIG_REGEX, webpage, 'flashvars.config', default=None), 'http:')
if not cfg_url:
inputs = self._hidden_inputs(webpage)
cfg_url = 'https://cdn-fck.tnaflix.com/tnaflix/%s.fid?key=%s' % (inputs['vkey'], inputs['nkey'])
cfg_xml = self._download_xml(
cfg_url, display_id, 'Downloading metadata',


Loading…
Cancel
Save