From d56e39b7e708cf18db11202d54483ddccd3e1ea5 Mon Sep 17 00:00:00 2001 From: Lukas Schauer <lukas@schauer.so> Date: Tue, 26 May 2020 23:35:44 +0200 Subject: [PATCH] added video worker workaround for weird input files --- videos/templates/worker.py | 1 + 1 file changed, 1 insertion(+) diff --git a/videos/templates/worker.py b/videos/templates/worker.py index 00c283d..d8c0201 100644 --- a/videos/templates/worker.py +++ b/videos/templates/worker.py @@ -77,6 +77,7 @@ def render_master(task, tmpfiles=[]): ffmpeg_command = ['ffmpeg', '-y', '-v', 'info', '-nostats'] ffmpeg_command += ['-analyzeduration', '20000000'] ffmpeg_command += ['-i', tmpfiles[0][1]] + ffmpeg_command += ['-max_muxing_queue_size', '1024'] normalize_audio = False # disabled for now -- GitLab