Browse Source

[YoutubeDL] Allow bestvideo+bestaudio/best strategy for ted extractor

totalwebcasting
Sergey M․ 10 years ago
parent
commit
17c8675853
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      youtube_dl/YoutubeDL.py

+ 1
- 1
youtube_dl/YoutubeDL.py View File

@ -1092,7 +1092,7 @@ class YoutubeDL(object):
req_format = self.params.get('format')
if req_format is None:
req_format_list = []
if info_dict['extractor'] == 'youtube' and FFmpegMergerPP(self).available:
if info_dict['extractor'] in ['youtube', 'ted'] and FFmpegMergerPP(self).available:
req_format_list.append('bestvideo+bestaudio')
req_format_list.append('best')
req_format = '/'.join(req_format_list)


Loading…
Cancel
Save