1
0
mirror of https://github.com/l1ving/youtube-dl synced 2025-03-13 22:17:14 +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

View File

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