By popular demand
Here is a test image that you can download to test your DVD players with the six basic KVCD resolutions.
Each image has six samples, which contains one of each:
kvcd-ulbr
kvcd-lbr
kvcd-352x240 PLUS
kvcd-352x480 PLUS
kvcd-704x480 PLUS
kvcdx3 528x480
Use Nero to burn your image:
http://www.kvcd.net/downloads/kvcd-compat-v2.nrg
Note for burning with Nero:
You can use Nero to burn the .nrg file. Just select "Burn CD-Image" from Nero's menu and select the .nrg file.
This sample was captured from a satellite wild feed. It's an analog channel in the C-Band. I captured via Composite Video with Panasonic DMR-E20 in 1 hour mode ( highest quality ) and encoded the samples with this script:
Code:
LoadPlugin("C:\encoding\fluxsmooth.dll")
LoadPlugin("C:\encoding\GripFit_preview.dll")
LoadPlugin("C:\encoding\blockbuster.dll")
LoadPlugin("C:\encoding\legalclip.dll")
LoadPlugin("C:\encoding\sampler.dll")
LoadPlugin("C:\encoding\vobsub.dll")
LoadPlugin("C:\encoding\convolution3d.dll")
LoadPlugin("C:\encoding\dustv4.dll")
LoadPlugin("C:\encoding\decomb.dll")
Mpeg2Source("E:\DVD_RTAV\project.d2v")
Telecide()
Decimate()
LegalClip()
GripCrop( width=352, height=240, overscan=0 )
GripSize()
FaeryDust()
Convolution3D(preset="movieLQ")
Blockbuster(method="noise", variance=.5, seed=1)
GripBorders()
LegalClip()
The line
"GripCrop( width=352, height=240, overscan=0 )" was the only line changed, depending on the resolution of the samples. All filters were used with the values shown above.
-kwag