mkdir build
cd build
cmake ..
make
done :)
Une bonne galère encore...
for f in *.ext;
do
# Les "" sont importants !!
./script.sh "$f";
done;
# utile pour toute une arborescence
find . -type f -name "*.ext" -exec `./script.sh` {} \;
ffmpeg -i "$1" -c:v libx264 -crf 23 -preset medium -c:a aac -strict -2 -b:a 128k -ar 44100 -ac 2 $1.mp4;
ffmpeg -loop 1 -i ../bg.jpg -i "$1" -tune stillimage -pix_fmt yuv420p -strict -2 -shortest $1.mp4
for i in ./*.jpg ;
do n=`basename $i | sed 's/.jpg//'`;
convert $n.jpg -bordercolor snow -background black +polaroid $n.png;
done
for i in ./*.jpg ;
do n=`basename $i | sed 's/.jpg//'`;
convert $n.jpg -bordercolor snow -background black +polaroid -resize 1920x1080 $n.png;
done
gs -sDEVICE=pdfwrite -dCompatibilityLevel=1.4 -dPDFSETTINGS=/screen -dNOPAUSE -dBATCH -dQUIET -sOutputFile=output.pdf input.pdfici
gs -dSAFER -dBATCH -dNOPAUSE -dNOCACHE -sDEVICE=pdfwrite -sColorConversionStrategy=CMYK -dProcessColorModel=/DeviceCMYK -sOutputFile=output-cmy.pdf input-rgb.pdf
L'ouverture de « ~/windows.psd » a échoué : Erreur lors du chargement du fichier PSD : Mode couleur non pris en charge : CMYKUne solution (imparfaite certe) >> l’utilisation d’ImageMagick :
convert input.psd -colorspace rgb output.png