summaryrefslogtreecommitdiff
path: root/test.py
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2018-04-22 14:37:29 +0200
committerJules Laplace <julescarbon@gmail.com>2018-04-22 14:37:29 +0200
commita7fc7b4affa2932008d35ccb02829ea1634fc1c3 (patch)
tree15bca28de1612cba252b1b4e815fd7580745ab16 /test.py
parent87986f0cbe18d5dc0e4f1f90b3d96a391b8c488d (diff)
push
Diffstat (limited to 'test.py')
-rw-r--r--test.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test.py b/test.py
index 07dc26e..849a8db 100644
--- a/test.py
+++ b/test.py
@@ -76,7 +76,7 @@ if __name__ == '__main__':
os.remove(render_dir + "frame_00000.png")
- cmd = ("/usr/bin/ffmpeg", "-i", render_dir + "/frame_%05d.png", "-y", "-c:v", "libx264", "-vf", "fps=30", "-pix_fmt", "yuv420p", render_dir + opt.name + "_" + opt.experiment + ".mp4")
+ cmd = ("/usr/bin/ffmpeg", "-i", render_dir + "frame_%05d.png", "-y", "-c:v", "libx264", "-vf", "fps=30", "-pix_fmt", "yuv420p", render_dir + opt.name + "_" + opt.experiment + ".mp4")
process = subprocess.Popen(cmd, stdout=subprocess.PIPE)
output, error = process.communicate()