limit source input to 5 files

stable
neingeist 6 years ago
parent f1d4ae9e92
commit 887d99f587

@ -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']

Loading…
Cancel
Save