>>124472>>>124519 >>124543 >>124559Thank you, thank you!
here's the unix commands:
>grab images (you could restrict it on JPGs only in this casewget -P ~/4CH/ -nd -A .jpg,.jpeg,.png,.gif,.webm -R *s.jpg,*s.jpeg,*s.png,*s.gif -H -rc -e robots=off -D
>>120105>do some manual/automated clean up, to leave behind only the mupsfind . -name "*.jpg" -size -209k -delete
>rename the numeric format into indexed MUP (i use this convention for other games) find -name '14*.jpg' | gawk 'BEGIN{ num=11 }{ printf "cp %s MUP%02d.jpg;\n", $0, num++ } END{ printf "cp %s MUP%02d.jpg;\ncp %s MUP%02d.jpg;\ncp %s MUP%02d.jpg;\n", $0, num++, $0, num++, $0, num++} ' | bash
>make them into a webmffmpeg -framerate 1 -start_number 11 -i "MUP%02d.jpg" -vf scale=iw*.7:-1 -c:v libvpx -b:v 512K -auto-alt-ref 0 -crf 10 -an "NAME.$(date +'%Y.%m.%d').webm"