limit source input to 5 files

This commit is contained in:
neingeist 2018-11-12 15:22:09 +01:00
parent f1d4ae9e92
commit 887d99f587

View file

@ -85,11 +85,13 @@ def prepare_download(form):
raise ValueError('Could not find start file')
sources = sources[start_index:]
# Super lazy: Limit to 5 source files input
sources = sources[:5]
# Seek into the first file
ss = (form.start_time.data - sources[0]['start_time']).total_seconds()
# Let ffmpeg do the rest of the job
# XXX Necessary to limit the concat files?
output_filename = '{}_{}.mp3'.format(form.start_time.data, form.length.data)
c = ['ffmpeg', '-y']