Skip to content
Snippets Groups Projects
Commit 250580df authored by Simon Künzel's avatar Simon Künzel
Browse files

Remove rescale_video blocking debug statements

parent 5ea97d3f
No related branches found
No related tags found
No related merge requests found
......@@ -62,8 +62,6 @@ def execute(database, own_job_id, input_data: CJsonObject):
res = subprocess.run(cmd)
print(f"FFmpeg finished with exit code: {res.returncode}")
# DEBUG
sleep(60 * 10)
if res.returncode != 0:
raise Exception(f"ffmpeg returned non-zero exitcode {res.returncode}")
......@@ -73,6 +71,3 @@ def execute(database, own_job_id, input_data: CJsonObject):
output_file.parent.mkdir(parents=True, exist_ok=True)
output_file.unlink(missing_ok=True)
shutil.move(tmp_output_file, output_file)
# DEBUG
sleep(60 * 10)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment