Re: [Mjpeg-users] Optimizing the stream

2003-12-11 Thread John Ribera
With Steven posting these killer matricies, maybe he should change his name to neo. - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, December 10, 2003 9:43 AM Subject: Re: [Mjpeg-users] Optimizing the stream > >From Florin Andrei <[EMAIL PROTECTED]>

[Mjpeg-users] Converting avi to yuv4mpeg with lav2yuv

2003-12-11 Thread romildo
Hello. Up to now I have been converting my avi movies to SVCD using transcode or mplayer to decode the input stream into a yuv4mpeg which is fed to mpeg2enc. I want to experiment lav2yuv for that purpose, but I am having problems with it. Maybe I am doing the wrong thing. I have a test.avi file,

Re: [Mjpeg-users] Converting avi to yuv4mpeg with lav2yuv

2003-12-11 Thread Ronald Bultje
Hi, On Thu, 2003-12-11 at 13:03, [EMAIL PROTECTED] wrote: > [tcprobe] RIFF data, AVI video > [avilib] V: 23.976 fps, codec=XVID, frames=3000, width=696, height=368 > [avilib] A: 48000 Hz, format=0x55, bits=0, channels=2, bitrate=128 kbps [..] > How would I convert this video into yuv4mpeg without

[Mjpeg-users] Re: Maximum video buffer size with mpeg2enc

2003-12-11 Thread Matti Haveri
> AFAIK (X)SVCD VBV buffer (Video Buffering Verifier) default is 224kB > although some apps use 230kB for historical reasons. An important thing to bear in mind is that VBV buffer *not* the same thing as the decoder video buffer (STD_buffer)!! The VBV is, basically, an irrelevant 'appendix' th

[Mjpeg-users] Re: Maximum video buffer size with mpeg2enc

2003-12-11 Thread Andrew Stevens
Hi Matti, > Thanks for the correction. So mplex has VBV buffer set correctly at > 230 kB for standalone DVD players, right? Again: there are *two* video buffer size parameters. 1. vbv_buffer_size. A 'left over' in the sequence headers from MPEG-1 that just has to be filled in more or less any

[Mjpeg-users] malloc error ?

2003-12-11 Thread E.Chalaron
Hi Just made the move to the .92 stable version (from sourceforge tar.gz). gcc is 3.0, MDK 8.2 I have an error running mpeg2enc via Kino : malloc failed. Got rid of all the possible options (-4 2 -2 1 etc...). No way. Has it been reported somewhere already ? Thanks Edouard -

Re: [Mjpeg-users] malloc error ?

2003-12-11 Thread Steven M. Schultz
On Fri, 12 Dec 2003, E.Chalaron wrote: > Just made the move to the .92 stable version (from sourceforge tar.gz). > gcc is 3.0, MDK 8.2 but what version of glibc? 2.2.5 or earlier have known issues that are being worked on. > I have an error running mpeg2enc via Kino : malloc fa

[Mjpeg-users] Confused about DVD bitrates

2003-12-11 Thread Robert Kesterson
OK, riddle me this. I have a script that I use for converting a smil file (of edited DV) to DVD-compatible mpeg. The script looks like this: start script #! /bin/sh mkfifo stream.yuv mkfifo video.yuv smil2yuv -a "${1%.smil}.mp2" "$1" >stream.yuv & cat stream.yuv

[Mjpeg-users] Interlaced DVD

2003-12-11 Thread Ray Cole
Given some of the problems I've been having with yuvkineco I thought I'd try using mpeg2enc with -I 1 and pass it interlaced material. So I ran the following sequence: exportvideo -D 0 -Y 2 {filename} | mpeg2enc -f 8 -i 1 -q 4 -g 6 -G 18 -n n -F 4 -a 2 -s When I play this on my computer it lo

Re: [Mjpeg-users] Interlaced DVD

2003-12-11 Thread Andras Kadinger
Ray Cole írta: any motion is really odd looking - as if it is moving foward, backing up, then moving forward again. This is a typical symptom of the field order getting reversed. Fix that, and you'll never forget the difference. :) Is mpeg2enc supposed to be able to handle interlaced material for

Re: [Mjpeg-users] Interlaced DVD

2003-12-11 Thread Steven Ellis
> Given some of the problems I've been having with yuvkineco I thought I'd > try using mpeg2enc with -I 1 and pass it interlaced material. > > So I ran the following sequence: > > exportvideo -D 0 -Y 2 {filename} | mpeg2enc -f 8 -i 1 -q 4 -g 6 -G 18 -n > n -F 4 -a 2 -s > > When I play this on my co

Re: [Mjpeg-users] Interlaced DVD

2003-12-11 Thread Ray Cole
I changed it to: exportvideo -D 0 -Y 2 {filename} | yuvcorrect -T INTERLACED_BOTTOM_FIRST | mpeg2enc -f 8 -F 4 -a 2 -s -q 4 -i 1 -g 6 -G 18 -n n Burned it, and it now looks even worse than before :-( Am trying INTERLACED_TOP_FIRST next, but believe I'd already given that a try. Will see.

Re: [Mjpeg-users] Interlaced DVD

2003-12-11 Thread Ray Cole
Got it. Passed it -z t and it looks GREAT! Thanks to those that replied. I think this is going to work out great! -- Ray On Fri, 12 Dec 2003 16:12:41 +1300 (NZDT) "Steven Ellis" <[EMAIL PROTECTED]> wrote: > > Given some of the problems I've been having with yuvkineco I thought I'd > > try usi

Re: [Mjpeg-users] Interlaced DVD

2003-12-11 Thread Bernhard Praschinger
Hallo > I changed it to: > > exportvideo -D 0 -Y 2 {filename} | > yuvcorrect -T INTERLACED_BOTTOM_FIRST | >mpeg2enc -f 8 -F 4 -a 2 -s -q 4 -i 1 -g 6 -G 18 -n n > > Burned it, and it now looks even worse than before :-( > Am trying INTERLACED_TOP_FIRST next, but believe I'd > already giv