X-Git-Url: http://gitweb.hugovil.com/?a=blobdiff_plain;f=fgen.sh;h=f303f1afd2ea9b193124a3c4d8aee96056ffcaa2;hb=65e0382389bfd2efefc352bee5eeb7d6a26f5210;hp=c7065c8d2edeeb7e3d94893509d7bfaec2246f5e;hpb=82d3c92276a2a97dc50911dcf829a1c71d035079;p=fgen.git diff --git a/fgen.sh b/fgen.sh index c7065c8..f303f1a 100755 --- a/fgen.sh +++ b/fgen.sh @@ -171,10 +171,15 @@ function generate_video() if [ x"${png_files}" != x"" ]; then log_dbg "generate_video start" + + local outfile + + outfile=${dest}/${group}.mp4 + if [ ${dry_run} -eq 1 ]; then - touch ${dest}/${group}.mp4 + touch ${outfile} else - ffmpeg ${FFMPEG_OPTS} -r ${fps} -pattern_type glob -i "${dest}/${group}-f*.png" ${dest}/${group}.mp4 + ffmpeg ${FFMPEG_OPTS} -r ${fps} -pattern_type glob -i "${dest}/${dest}-${group}-f*.png" ${outfile} fi log_dbg "generate_video: end" @@ -184,8 +189,8 @@ function generate_video() print_usage() { - echo "${PROG_NAME} -- Générateur de séquence d'images PNG à partir d'un fichier Photoshop (PSD)." - echo "Usage: ${PROG_NAME} [OPTIONS...] FICHIER-PSD" + echo "${PROG_NAME} -- Générateur de séquence d'images PNG à partir d'un fichier Photoshop (PSD/PSB)." + echo "Usage: ${PROG_NAME} [OPTIONS...] FICHIER-PHOTOSHOP" echo echo "Options:" echo " -d affiche les informations de debug" @@ -233,11 +238,23 @@ fi src="${*}" if [ ! -f "${src}" ]; then - log_err "Error: PSD source file not found" + log_err "Erreur: fichier source non trouvé" exit 1 fi -dest=$(basename -s .psd "${src}") +ext=$(echo "${src##*.}" | awk '{print tolower($0)}') + +case ${ext} in + psd|psb) + # Ok: PSD or PSB format detected + ;; + *) + log_err "Format non-supporté: ${ext}" + exit 1 + ;; +esac + +dest=$(basename -s .${ext} "${src}") layers=${dest}/layers.txt if [ ! -d ${dest} ]; then