PDA

View Full Version : multiplexing question


sh03z
11th May 2004, 19:55
I authored a DVD from some home video footage.

When I played it on my DVD player, wavy lines appeared. The TV did not deinterlace it like it was supposed to.

I used bbmpeg to multiplex the DVD-mpeg2 stream with the DVD-mp2 audio stream.

Was the multiplexing header the problem?

Should I use tmpeg, or is something else wrong?

Thanks,

-Mike

joshyg2
12th May 2004, 06:40
how did you encode yor home video footage?

post a script, log file or something so we can see what you have done wrong.

sh03z
12th May 2004, 15:59
okay, here it is:

I tried the following settings:
(CCE 2.67)

Video:
Add sequence end code checked
GOP sequence 3-4
Lum. Level 16-235
Offset line 0

Quality:
Block scanning order alternate
Intra block DC precision 10
Quantizer Characteristics 16

as a 2 pass multipass VBR

the source file was of LEADtools MJPEG codec, from VirtualDub10

here's my avs script:
-----------
LoadPlugin("somewhere\MPEG2Dec3dg.dll")
avisource("someavi.avi")
ConvertToYUY2()
AddBorders(16,4,16,4)
BicubicResize(720,480)
-----------

joshyg2
17th May 2004, 05:38
your problem is, that your are adding borders to an Interlaced source, and then resizing.

you have to separate the fields first, add the borders, resize the field, then weave the fields together again.

separatefields()
AddBorders(0,0,0,0) #replace with your values
BicubicResize(720,240)
weave()

or try using

"InterlacedResize()" instead of "BicubicResize()"

sh03z
17th May 2004, 16:05
ok, thanks man

I figured it was something like that.