Hallo -

> From: Al Bogner <[EMAIL PROTECTED]>
> 
> In the meantime I compiled the MjpegTools with my problematic Athlon 
> and damned, neither the kernel 2.4.21-rc7-ac1 instead of the 
> SuSE-kernel nor the MjpegTools from cvs solved my problems...
> 
> > gdb lav2yuv *.avi | yuvdenoise  | yuvscaler -O SVCD | mpeg2enc -v 
> 1 -M 2 -b 2000 -f 8 -F 3 -a 2 -q 8 -4 1 -2 1 -s -g 15 -G 15 -S 
> 10000 -o test.m2v
> "/media_out/vegas_test/test.avi" is not a core dump: File format not 
> recognized

        What you want to do is first allow coredump files to be created (by
        default 'coredumpsize' is set to 0, at least on my SuSE 8.2 system):

                unlimit coredumpsize

        then run the lav2yuv pipeline:

                lav2yuv *.avi | yuvdenoise ...

        then after you see the "segment fault - coredumped" message use gdb
        like this:

        gdb /usr/local/bin/lav2yuv core

        (this assumes /usr/local/bin is where the programs are installed)

        Next type 'where':

        where

        you should see something that looks like this:

        ...
#1  0x08048359 in main () at x.c:3
#2  0x4003a8ae in ?? ()
        ...

        The other thing is that '-b 2000' is extremely low for a DVD (which is
        what '-f 8' says the format is).   I would recommend something like
        '-b 3800'.   "-4 1" is about 2x slower than "-4 2" and there is almost
        no quality difference (the difference is very very small).

        Good Luck!

        Cheers,
        Steven Schultz


-------------------------------------------------------
This SF.net email is sponsored by:  Etnus, makers of TotalView, The best
thread debugger on the planet. Designed with thread debugging features
you've never dreamed of, try TotalView 6 free at www.etnus.com.
_______________________________________________
Mjpeg-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/mjpeg-users

Reply via email to