This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
rm *.png run.mp4 | |
for i in {3..192..3} | |
do | |
wget http://modeles.meteociel.fr/modeles/gfs/run/gfs-2-$i-3h.png | |
convert -pointsize 18 -font /path/to/font.ttf -fill red -draw "text 470,50 \"makhdoum by ubugnu ;-)\"" gfs-2-$i-3h.png gfs-2-$i-3h.png | |
done | |
j=1 | |
for i in {3..192..3} |