i'm quite new to kvcd and have a short question concerning the source aspect ratio.
in the beginning i thought tmpg would handle this correctly itself, since the output looked fine, when i used x>y resolutions like 352x288 in my avs-script. in this case tmpg set the source aspect ratio to 4:3 625 lines (pal, 704x576).
but when i tried 352x576 tmpg set the source aspect ratio to 4:3 display and the output was horizontally streched/vertically crushed.
so, what do i have to set in tmpg's advanced options?
is the source aspect ratio correct but something else needs to be changed?
or is there anything wrong in the script?
many, many thanks in advance!
b
>>>
newbie template...
SOURCE:
- Filetype (divx/xvid/mpeg/mjpg - so what says Gspot??) ? : dvd
- interlaced(means combing on fast moving scenes) or not interlaced ? : not
- Framerate (29.97, 23.976, 25.000) ? : 25
- Resolution ? : probably 720x576..!?
- Audiosamplerate (44.1 khz, 48 khz)? : 48
- Audio Type (AC3, mp3, mp2) ?: ac3
- Is Audio VBR or CBR ? cbr
(some answers you get if using Gspot on the source!)
DESTINATION:
- KVCD, K(S)VCD or KDVD ?: kvcd
- Mode (mpeg1 or mpeg2) ?: mpeg1
- Framerate (29.97, 23.976, 25.000) ? : 25
- Resolution ? 352x576
- Audiosamplerate (44.1 khz or 48 khz) ? : 48
- Audio Enc Type (mp2, AC3) ?: mp2
- Encoding Appl. (CCE or TmpgEnc) ?: tmpg
- muxing Appl. (TmpgEnc, BBmpeg, etc.) ?: bb
- Authoring Appl. (Vcdeasy, VCDgear, Nero) ?: vcdeasy
- Burning Appl. (Vcdeasy, Nero, etc.) ?: nero
If Avisynth is used:
- Which Version of Avisynth Do you use? 2.54
- Post your last state of your script here!:
Quote:
loadplugin("d:\blah\test\filters\asharp.dll")
loadplugin("d:\blah\test\filters\grip.dll")
loadplugin("d:\blah\test\filters\mpeg2dec3.dll")
loadplugin("d:\blah\test\filters\stmedianfilter.dl l")
loadplugin("d:\blah\test\filters\undot.dll")
loadplugin("d:\blah\test\filters\unfilter.dll")
mpeg2source("d:\blah\test\def\test.d2v")
undot()
asharp(1,4)
gripcrop(352,576)
gripsize(resizer="bicubicresize")
stmedianfilter(3,3,1,1)
mergechroma(blur(1.5))
mergeluma(blur(0.1))
scriptclip("nf=ydifferencetonext()"+chr(13)+"unfil ter(-(fmin(round(nf)*2,100)),-(fmin(round(nf)*2,100))).temporalsoften(fmin(round (2/nf),6),round(1/nf),round(3/nf),1,1)")
gripborders()
function fmin(int f1,int f2){return(f1<f2)?f1:f2}
|