E.Chalaron wrote:
Hi all
This may not be relevant to everybody but ...
I am capturing here YUV frames using Coriander.
On my Athlon 32 it works fine and the used script to buld my movies back is :

(find . -name \* | xargs cat) | yuyvto4m -k -w 1244 -h 934 -a 1:1 -i p -r 16:1 | bunch_of_filters | yuvplay


Let say I have a sequence of frames such as :

AAAAAAAAAAAAA BBBBBBBBBBBBBBBBBB CCCCCCCCCCCCC
Well I end up with
AAAABBBBBAAAAABBBBBCCCCCBBBBBCCCCCC
A chance that is not my DNA !

I assume that you are assembling a bunch of still frames into a movie.

It's not the order that find is finding your files in?
If you run find by itself, does it produce the list of files in the correct order?
From memory, find uses inode order not alphabetical order.

perhaps you could try:

cat * | yuyvto4m ...

Mark





-------------------------------------------------------
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42" plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
_______________________________________________
Mjpeg-users mailing list
Mjpeg-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mjpeg-users

Reply via email to