1
0
mirror of https://github.com/l1ving/youtube-dl synced 2025-03-14 22:37:22 +08:00

use origin method of getting params

This commit is contained in:
Anthony Weems 2014-05-02 03:32:04 -05:00
parent 2bc50ce0fe
commit 15818d4e21

@ -646,7 +646,7 @@ class YoutubeDL(object):
playlist_results.append(entry_result) playlist_results.append(entry_result)
ie_result['entries'] = playlist_results ie_result['entries'] = playlist_results
if self.params['concat']: if self.params.get('concat', False):
concat = FFmpegConcatPP(self) concat = FFmpegConcatPP(self)
if concat._get_executable(): if concat._get_executable():
postprocessors = [concat] postprocessors = [concat]