use another directory TMP_DIR for the downloads

This commit is contained in:
neingeist 2018-11-12 08:31:46 +01:00
parent 6a43316746
commit 734c562f9c
3 changed files with 4 additions and 4 deletions

View file

@ -47,7 +47,7 @@ def download():
@app.route('/download_file/<filename>')
def download_file(filename):
return send_from_directory(app.config['DATA_DIR'], filename,
return send_from_directory(app.config['TMP_DIR'], filename,
as_attachment=True)
@ -93,7 +93,7 @@ def prepare_download(form):
source['fn']) for source in sources])]
c += ['-codec', 'copy']
c += ['-t', str(form.length.data * 60)]
c += [os.path.join(app.config['DATA_DIR'], output_filename)]
c += [os.path.join(app.config['TMP_DIR'], output_filename)]
app.logger.debug(' '.join(c))
subprocess.call(c)