Quantcast KVCD: Bad Encoding ... Why? - Page 2 - digitalFAQ.com Forums [Archives]
  #21  
08-31-2004, 06:49 AM
Dialhot Dialhot is offline
Free Member
 
Join Date: May 2003
Posts: 10,463
Thanks: 0
Thanked 0 Times in 0 Posts
Quote:
Originally Posted by password
HURRRAY!!!! found my problem. 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
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
Reply With Quote
Someday, 12:01 PM
admin's Avatar
Site Staff / Ad Manager
 
Join Date: Dec 2002
Posts: 42
Thanks: ∞
Thanked 42 Times in 42 Posts
  #22  
09-01-2004, 06:45 PM
password password is offline
Invalid Email / Banned / Spammer
 
Join Date: Nov 2003
Posts: 138
Thanks: 0
Thanked 0 Times in 0 Posts
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%?
Reply With Quote
  #23  
09-02-2004, 03:22 AM
Dialhot Dialhot is offline
Free Member
 
Join Date: May 2003
Posts: 10,463
Thanks: 0
Thanked 0 Times in 0 Posts
Your film is probably an hhybrid one and I'm not the guy for helping you there. Boulder or Inc ?
Reply With Quote
  #24  
09-02-2004, 06:00 AM
Boulder Boulder is offline
Free Member
 
Join Date: Sep 2002
Location: Lahti, Finland
Posts: 1,652
Thanks: 0
Thanked 0 Times in 0 Posts
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.
Reply With Quote
  #25  
09-02-2004, 09:54 AM
password password is offline
Invalid Email / Banned / Spammer
 
Join Date: Nov 2003
Posts: 138
Thanks: 0
Thanked 0 Times in 0 Posts
thanx Phil and Boulder for your quick responce. but where exactly do i edit this in my script?
Reply With Quote
  #26  
09-02-2004, 10:29 AM
Boulder Boulder is offline
Free Member
 
Join Date: Sep 2002
Location: Lahti, Finland
Posts: 1,652
Thanks: 0
Thanked 0 Times in 0 Posts
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.
Reply With Quote
  #27  
09-02-2004, 05:30 PM
password password is offline
Invalid Email / Banned / Spammer
 
Join Date: Nov 2003
Posts: 138
Thanks: 0
Thanked 0 Times in 0 Posts
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"
Reply With Quote
  #28  
09-03-2004, 12:08 AM
Boulder Boulder is offline
Free Member
 
Join Date: Sep 2002
Location: Lahti, Finland
Posts: 1,652
Thanks: 0
Thanked 0 Times in 0 Posts
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.
Reply With Quote
  #29  
09-16-2004, 10:16 PM
password password is offline
Invalid Email / Banned / Spammer
 
Join Date: Nov 2003
Posts: 138
Thanks: 0
Thanked 0 Times in 0 Posts
thanx for the info
Reply With Quote
Reply




Similar Threads
Thread Thread Starter Forum Replies Last Post
KVCD: Looking at getting an encoding rig buzz86 Video Encoding and Conversion 3 04-29-2006 07:07 AM
Encoding: Vcd vs kvcd almightythermos Video Encoding and Conversion 1 07-22-2004 09:19 AM
Encoding My First KVCD! dredj Video Encoding and Conversion 23 07-01-2003 12:27 PM
KVCD: Encoding at 4:3 or 16:9? Adder Video Encoding and Conversion 5 01-29-2003 10:27 AM
How can I get CCE to use one of the kvcd templates for encoding? jrv331 Video Encoding and Conversion 1 11-14-2002 02:55 PM

Thread Tools



 
All times are GMT -5. The time now is 03:16 PM  —  vBulletin © Jelsoft Enterprises Ltd