Trim silence at the beginning of a song

This commit is contained in:
Mello-Yello
2018-07-27 16:05:44 +02:00
parent 12c3b928ee
commit 7674db7f71

View File

@@ -75,6 +75,7 @@ class Converter:
# add common params for any of the above combination
ffmpeg_params += '-b:a 192k -vn '
ffmpeg_params += '-af silenceremove=start_periods=1 '
ffmpeg_pre += ' -i'
command = ffmpeg_pre.split() + [self.input_file] + ffmpeg_params.split() + [self.output_file]