digitalFAQ.com Forums [Archives]

digitalFAQ.com Forums [Archives] (http://www.digitalfaq.com/archives/)
-   Video Encoding and Conversion (http://www.digitalfaq.com/archives/encode/)
-   -   KVCD: Bad encoding ... why? (http://www.digitalfaq.com/archives/encode/11826-kvcd-bad-encoding.html)

Dialhot 08-31-2004 06:49 AM

Quote:

Originally Posted by password
HURRRAY!!!! found my problem. :D i ran dvd2avi and saved the project and the frame rate was at 23.976 (last time it saved at 29.97) and did a test encoded and it was all good. thanx for everyones help :D

FYI this is due to the fact that you problably don't use the "Force film" option in the "Video" menu of dvd2avi.

Note: I already gave you the page to read on avisynth.org :-(
http://www.avisynth.org/index.php?page=YourFirstScript

password 09-01-2004 06:45 PM

i know your supposed to force film only if it's 96% and high so what would happen if i forced film at lower than that, like 86%?

Dialhot 09-02-2004 03:22 AM

Your film is probably an hhybrid one and I'm not the guy for helping you there. Boulder or Inc ?

Boulder 09-02-2004 06:00 AM

Wouldn't that be a simple case of disabling Force FILM and then adding Telecide(order=x).Decimate() right after the MPEG2Source line. The field order needs to be determined, order=1 is top field first and order=0 is bottom field first. The Decomb docs show an easy way to find it out.

I'd be really bold and do

Telecide(order=x,post=1,guide=1,hints=true)
KernelDeint(order=x,sharp=true,threshold=7)
Decimate()

for better vertical resolution on the postprocessed frames. KernelDeint is needed along with Decomb.

password 09-02-2004 09:54 AM

thanx Phil and Boulder for your quick responce. but where exactly do i edit this in my script?

Boulder 09-02-2004 10:29 AM

As I wrote, place those three lines right after the MPEG2Source line.

MPEG2Source("path\clip.d2v")
Telecide(order=x,post=1,guide=1,hints=true)
KernelDeint(order=x,sharp=true,threshold=7)
Decimate()
#and then the rest of your script as usual

Note that I added the guide=1 parameter to the Telecide arguments. If the raw output (use a script that only has the MPEG2Source line and open it in VDub) shows a pattern of three non-combed frames followed by two combed frames, you should use guide=1.

password 09-02-2004 05:30 PM

thanx Boulder so it should look like this right?

## DLL Section ##
#
LoadPlugin("C:\Filters25\MPEG2Dec3.dll")
LoadPlugin("C:\Filters25\GripFit_YV12.dll")
LoadPlugin("C:\Filters25\STMedianFilter.dll")
LoadPlugin("C:\Filters25\asharp.dll")
LoadPlugin("C:\Filters25\unfilter.dll")
LoadPlugin("C:\Filters25\undot.dll")
LoadPlugin("C:\Filters25\Decomb511.dll")
#
####
## Main section and static filters ###
#
Mpeg2Source("D:\DVD_VIDEO\THE_MATRIX\DVD2AVI_Proje ct_file.d2v")
Telecide(order=x,post=1,guide=1,hints=true)
KernelDeint(order=x,sharp=true,threshold=7)
Decimate()
#
undot()
asharp(1, 4)
Gripcrop(352, 240,overscan=1,source_anamorphic=true)
GripSize(resizer="BicubicResize")
STMedianFilter(3, 3, 1, 1 )
MergeChroma(blur(1.5))
MergeLuma(blur(0.1))
#

and also would this be the same for "anamorphic=false"

Boulder 09-03-2004 12:08 AM

You'll have to load the plugin KernelDeint.dll as well. You can download it at http://www.avisynth.org/warpenterprises , download the latest one (Leak's version). You should really just put all the plugins to the Avisynth 2.5 plugins folder so you wouldn't need to use LoadPlugin at the beginning of your script. The plugins folder is by default C:\Program Files\Avisynth 2.5\plugins\ .

You also need to determine the correct field order as I wrote earlier, and replace order=x in both Telecide and KernelDeint lines by order=0 (bottom field first) or order=1 (top field first). No, I'm not going to tell you how to determine that. See the Decomb tutorial, included in the Decomb package. It contains an easy way to find it out.

password 09-16-2004 10:16 PM

thanx for the info


All times are GMT -5. The time now is 04:32 AM  —  vBulletin © Jelsoft Enterprises Ltd

Site design, images and content © 2002-2024 The Digital FAQ, www.digitalFAQ.com
Forum Software by vBulletin · Copyright © 2024 Jelsoft Enterprises Ltd.