Browse Source

[lynda] Fix height for prioritized streams

totalwebcasting
Sergey M․ 8 years ago
parent
commit
ea8aefd1d7
No known key found for this signature in database GPG Key ID: 2C393E0F18A9236D
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      youtube_dl/extractor/lynda.py

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

@ -200,7 +200,7 @@ class LyndaIE(LyndaBaseIE):
for prioritized_stream_id, prioritized_stream in prioritized_streams.items():
formats.extend([{
'url': video_url,
'width': int_or_none(format_id),
'height': int_or_none(format_id),
'format_id': '%s-%s' % (prioritized_stream_id, format_id),
} for format_id, video_url in prioritized_stream.items()])


Loading…
Cancel
Save