projects
/
fgen.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e94c6ad
)
Make ffmpeg output less verbose
author
Hugo Villeneuve
<hugo@hugovil.com>
Fri, 6 Oct 2023 03:20:07 +0000
(23:20 -0400)
committer
Hugo Villeneuve
<hugo@hugovil.com>
Sat, 7 Oct 2023 15:45:53 +0000
(11:45 -0400)
fgen.sh
patch
|
blob
|
history
diff --git
a/fgen.sh
b/fgen.sh
index
56b162e
..
64baf44
100755
(executable)
--- a/
fgen.sh
+++ b/
fgen.sh
@@
-17,6
+17,7
@@
fps=8
debug=0
trames=1
SED=sed
+FFMPEG_OPTS="-hide_banner -loglevel error -y"
# -limit memory 5000mb -limit disk 5gb
IM_OPS=""
@@
-220,5
+221,5
@@
fi
if which ffmpeg 1> /dev/null 2>&1; then
# Conversion vidéo:
- ffmpeg
-y
-r ${fps} -start_number 1 -i ${dest}/f%d.png ${dest}/sequence.mp4
+ ffmpeg
${FFMPEG_OPTS}
-r ${fps} -start_number 1 -i ${dest}/f%d.png ${dest}/sequence.mp4
fi