Hi, 
I found this shell-script in the spanish manual to resize images to can
use with cinelerra:
        #/bin/sh
        mkdir resized
        for element in `ls . | grep jpg`;
        do
            size=`identify ${element}`
            width=`echo ${size} | sed '+s+.*JPEG ++' | sed '+s+x.*++'`
            height=`echo ${size} | sed '+s+.*JPEG [0-9]*x++' | sed 
'+s+DirectClass.*++'`
            let new_width=${width}*9375/10000
            convert -resize "${new_width}x${height}!" -quality 100 ${element} 
resized/${element}
        done

But it doesen't works... it only creates the folder called "resized" but 
doesn't do anything more..

In another list somone told me that I have to change the first line and
write #!/bin/bash intead of #/bin/sh 
but it doesn't works neither

Someone can help me please?
And, is there any other way to can edit a motion using jpg pictures?
this way it doesn't seems easy...
Thanks!

Quim (sorry for this horrible "english", I can't do it better...)


_______________________________________________
Cinelerra mailing list
[email protected]
https://init.linpro.no/mailman/skolelinux.no/listinfo/cinelerra

Reply via email to