From 6b73ff7511a37c08be63c77ec66fc7c6c2be06b1 Mon Sep 17 00:00:00 2001 From: Andinus Date: Wed, 3 Nov 2021 22:02:19 +0530 Subject: Set ffmpeg verbosity --- algorithms/java/DFS.java | 18 +++++++++--------- lib/Fornax/CLI.rakumod | 4 +++- 2 files changed, 12 insertions(+), 10 deletions(-) diff --git a/algorithms/java/DFS.java b/algorithms/java/DFS.java index ba3d8d8..6b46ca6 100644 --- a/algorithms/java/DFS.java +++ b/algorithms/java/DFS.java @@ -40,8 +40,8 @@ public class DFS { System.out.println(); // Found a solution, exiting. - // if (maze[curx][cury] == '$') - // System.exit(0); + if (maze[curx][cury] == '$') + System.exit(0); if (visited[curx][cury]) { continue; @@ -55,13 +55,13 @@ public class DFS { public static void main(String[] args) { char[][] maze = { - {'.', '#', '.'}, - {'.', '.', '.'}, - {'.', '#', '.'}, - {'.', '.', '.'}, - {'.', '.', '#'}, - {'.', '#', '.'}, - {'.', '.', '$'}, + {'.', '#', '.', '#', '.'}, + {'.', '.', '.', '.', '.'}, + {'.', '#', '.', '.', '$'}, + {'.', '.', '.', '#', '.'}, + {'.', '.', '.', '.', '#'}, + {'.', '#', '#', '.', '.'}, + {'.', '.', '.', '.', '.'}, }; boolean[][] visited = new boolean[maze.length][maze[0].length]; diff --git a/lib/Fornax/CLI.rakumod b/lib/Fornax/CLI.rakumod index cdc910d..9f6c569 100644 --- a/lib/Fornax/CLI.rakumod +++ b/lib/Fornax/CLI.rakumod @@ -121,7 +121,9 @@ multi sub MAIN( put "[fornax] Generated images." if $verbose; put "[fornax] Creating a slideshow." if $verbose; - run «ffmpeg -loglevel error -r "$frame-rate" -i "$output/\%08d.png" + + my Str $log-level = $verbose ?? "info" !! "error"; + run «ffmpeg -loglevel "$verbose" -r "$frame-rate" -i "$output/\%08d.png" -vcodec libx264 -crf 28 -pix_fmt yuv420p "$output/solution.mp4"»; put "[fornax] Output: '$output'"; } -- cgit 1.4.1-2-gfad0