Browse Source

[youku] Fix fileid extraction

master-ytdl-org
xuhaomin 8 years ago
committed by Sergey M
parent
commit
e5106ba402
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      youtube_dl/extractor/youku.py

+ 1
- 1
youtube_dl/extractor/youku.py View File

@ -105,7 +105,7 @@ class YoukuIE(InfoExtractor):
if stream.get('channel_type') == 'tail':
continue
format = stream.get('stream_type')
fileid = stream['stream_fileid']
fileid = stream['segs'][0]['fileid']
fileid_dict[format] = fileid
def get_fileid(format, n):


Loading…
Cancel
Save