hello,

i have only been looking at melt for a day or two so i am missing something 
really basic no doubt... never the less i have now joined this mail list and i 
say hello and thank you for loveley mlt :) 

ok so what i would like to do is create a slide show of all the images in a dir

somthing like this:

melt -group out=25 *.jpg -mix 25 -mixer luma

but of course this fade only applies to last two images

there must be an easy way to do crossfades between all images ?

i started getting ugly and wrote a script called fade.sh

that i call with   melt `fade.sh` path 25   but that doesnt quite work how i 
would like it to mainly due to my lack of ability to write clever scripts:

#!/bin/bash

P=$1

ls $P/*.jpg | \
xargs -n 2 echo |while read a b ; \
do 
printf "$a out=$2 $b out=$2 -mix $2 -mixer luma "; 
done

nearly but not quite :)

whats the easy way ?

thanks

rob

--------------
[email protected]
rob.goto10.org
--------------

------------------------------------------------------------------------------
This SF.Net email is sponsored by the Verizon Developer Community
Take advantage of Verizon's best-in-class app development support
A streamlined, 14 day to market process makes app distribution fast and easy
Join now and get one step closer to millions of Verizon customers
http://p.sf.net/sfu/verizon-dev2dev 
_______________________________________________
Mlt-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/mlt-devel

Reply via email to