Re: [Mjpeg-users] No a bug

2005-11-02 Thread E.Chalaron
In my particular case one given directory is a buch of raw YUV files.. that's it ... so cat works Ok and -name \* as well ... not the "sorting" But I have it now Thanks a lot. E > find cannot be relied upon to return files in alphabetical order, even if > it does do so in most cases. > > Mark >

Re: [Mjpeg-users] No a bug

2005-11-02 Thread Mark Heath
E.Chalaron wrote: Or perhaps not? The thing you most likely are experiencing is that find list all matches i filesystem order, which may or may not be what you want. You may be better off with find . -name \*|sort, or, if you don't need the recursion, simply ls *. The recursion wont work, as fi

[Mjpeg-users] No a bug

2005-11-02 Thread E.Chalaron
> Or perhaps not? The thing you most likely are experiencing is that find > list all matches i filesystem order, which may or may not be what you want. > You may be better off with find . -name \*|sort, or, if you don't need the > recursion, simply ls *. So between SUSE to Mandrake "find" does not

Re: [Mjpeg-users] Driver installation?

2005-11-02 Thread Torsten Mohr
Hi, > thanks for the hint. But it looks like my card is damaged. > As i think about replacing it now i thought i'd first ask > here for recommendations. What card should i buy for digital > video editing under Linux? i got the hint by private mail to clean the contacts of the PCI card. That act

Re: [Mjpeg-users] A bug ?

2005-11-02 Thread Martin Samuelsson
On Thu, 3 Nov 2005 11:21:10 +1300 "E.Chalaron" <[EMAIL PROTECTED]> wrote: > > perhaps you could try: > > > > cat * | yuyvto4m ... > > Well I ususally have 36000 to 5 files ... too much for "cat" to handle > therfore the need to use find ... Or perhaps not? The thing you most likely are exp

Re: [Mjpeg-users] A bug ?

2005-11-02 Thread E.Chalaron
Hello Mark > From memory, find uses inode order not alphabetical order. Well it works on 2 other machines (MDK 10 though, not SuSE10) > perhaps you could try: > > cat * | yuyvto4m ... Well I ususally have 36000 to 5 files ... too much for "cat" to handle therfore the need to use find ...

Re: [Mjpeg-users] A bug ?

2005-11-02 Thread Mark Heath
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_filte

[Mjpeg-users] A bug ?

2005-11-02 Thread E.Chalaron
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 s