about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAndinus <andinus@nand.sh>2021-11-18 17:00:08 +0530
committerAndinus <andinus@nand.sh>2021-11-18 17:00:08 +0530
commit8af7ea1e0572870eb49e6a6784736a2ca803600e (patch)
tree6803a880105f222ee3767f83d82ab1342d3a454f
parent5df46f19a7ed9772cd639a81e4ab57efb8023bbb (diff)
downloadfornax-8af7ea1e0572870eb49e6a6784736a2ca803600e.tar.gz
Set stop duration to 2 seconds
-rw-r--r--lib/Fornax/CLI.rakumod2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Fornax/CLI.rakumod b/lib/Fornax/CLI.rakumod
index d066ebf..bac08ff 100644
--- a/lib/Fornax/CLI.rakumod
+++ b/lib/Fornax/CLI.rakumod
@@ -91,7 +91,7 @@ multi sub MAIN(
 
         my Str $log-level = $debug ?? "info" !! "error";
         run «ffmpeg -loglevel "$log-level" -r "$frame-rate" -i "$output/\%08d.png"
-                    -vf 'tpad=stop_mode=clone:stop_duration=4'
+                    -vf 'tpad=stop_mode=clone:stop_duration=2'
                     -vcodec libx264 -crf 28 -pix_fmt yuv420p "$output/solution.mp4"»;
     }
 }