From: Hugo Villeneuve Date: Sat, 7 Oct 2023 16:39:49 +0000 (-0400) Subject: Fix ffmpeg input bug X-Git-Url: http://gitweb.hugovil.com/?a=commitdiff_plain;ds=sidebyside;h=f630eecd84c3d19b0467f0c6d224fba81f51f41d;hp=665faf610a826459b8edafbbf419e10273465ce8;p=fgen.git Fix ffmpeg input bug --- diff --git a/fgen.sh b/fgen.sh index df952fa..f7015ed 100755 --- a/fgen.sh +++ b/fgen.sh @@ -20,7 +20,11 @@ trames=1 dry_run=0 SED=sed -FFMPEG_OPTS="-hide_banner -loglevel error -y" + +# When reading a file line by line, if a command inside the loop +# also reads stdin, it can exhaust the input file. +# -nostdin: disable ffmpeg interaction on standard input: +FFMPEG_OPTS="-hide_banner -loglevel error -y -nostdin" # -limit memory 5000mb -limit disk 5gb IM_OPS=""