X-Git-Url: http://gitweb.hugovil.com/?a=blobdiff_plain;f=fgen.sh;h=5ffb9d775aedc5770edb0e63f59a16a161982ccd;hb=58b228f01c3ee64d5934428f416b4416d807b5c8;hp=1546f8aa7994a270df976e711ae805336cd85d53;hpb=86d3c7b5e79cef08b254192ae674b9d8324094a2;p=fgen.git diff --git a/fgen.sh b/fgen.sh index 1546f8a..5ffb9d7 100755 --- a/fgen.sh +++ b/fgen.sh @@ -160,14 +160,19 @@ function insert_empty_frames() done } +function record_max_nf() +{ + if [ ${nf} -gt ${max_nf} ]; then + max_nf="${nf}" + fi +} + function generate_video() { local png_files if which ffmpeg 1> /dev/null 2>&1; then - set +e - png_files=$(ls ${dest}/${dest}-${group}-f*.png 2> /dev/null) - set -e + png_files=$(ls ${dest}/${dest}-${group}-f*.png 2> /dev/null || echo "") if [ x"${png_files}" != x"" ]; then log_dbg "generate_video start" @@ -292,6 +297,7 @@ if [ ${trames} -eq 1 ]; then convert -size ${size} xc:none ${dest}/background.png nf="" + max_nf="0" oldnf="" files="" group="default" @@ -357,6 +363,7 @@ if [ ${trames} -eq 1 ]; then fi log_dbg "New frame ID: ${nf}" + record_max_nf fname=$(get_frame_name ${nf})