Quantcast DVD2SVCD: ini Files to use KVCD_LBR Parameters for Dvd2s(K)VCD - Page 5 - digitalFAQ.com Forums [Archives]
  #81  
07-20-2003, 04:35 AM
jorel jorel is offline
Invalid Email / Banned / Spammer
 
Join Date: Aug 2002
Location: Brasil - MG - third stone from the sun
Posts: 5,570
Thanks: 0
Thanked 0 Times in 0 Posts
Thomas Davie


this is the script using autoload working without any problem
with all filters in plugins folder of avisynth 25!
is the same used to got the results in my last post here!

[AVISYNTH_Adaptative Philter]
0=FieldDeinterlace()
1=nf=0
2=GripCrop(^TargetWidth,^TargetHeight+^BorderTop+^ BorderBottom,overscan=^overscan,source_anamorphic= ^source_ana,dest_anamorphic=^dest_ana)
3=GripSize(resizer="BiCubicResize")
4=Undot()
5=Asharp(1,4)
6=STMedianFilter(^S_FilterThreshHold,^S_EdgeThresh Hold,0,0)
7=MergeChroma(blur(^blur_chroma))
8=MergeLuma(blur(^blur_luma))
9=SwitchThreshold=(Width<=352)?4Width<=480)?3:2
10=ScriptClip("nf=round(YDifferenceToNext())"+chr( 13)+"nf>=SwitchThreshold?unfilter(-(fmin(nf*2,100)),-(fmin(nf*2,100))):TemporalCleaner(6+nf,11+nf)")
11=GripBorders()
12=function fmin(int f1,int f2){return(f1<f2)?f1:f2}
^overscan=1
^source_ana=false
^dest_ana=false
^S_FilterThreshHold=8
^S_EdgeThreshHold=32
^blur_chroma=1.58
^blur_luma=0.1

in my case i need "fielddeinterlace",if you don't need,
only remove and correct the numbers in the script.
if you got problems using this script check the filters.
are you using tmpgen259? (i don't understand your version posted)
change, some people got problems with 259 version!



edited:
corrections in the script..
was TemporalCleaner(6+nf,13+nf)") and
now TemporalCleaner(6+nf,11+nf)") is better.
thanks Phil.
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
  #82  
07-20-2003, 05:27 AM
Thomas Davie Thomas Davie is offline
Free Member
 
Join Date: Jul 2003
Posts: 65
Thanks: 0
Thanked 0 Times in 0 Posts
Jorel, my script is exactly the same as yours, except that there is some extra space between the end of a few characters and some commas, and the fact that I do not need PAL. I suppose it is possible when I originally copied and pasted that I made some mistake, so no I try yours.

Cheers, and a beery good night.

Tom
Reply With Quote
  #83  
07-20-2003, 07:12 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 Thomas Davie
But it is in the directory. Could the problem be that the Gripfit_Preview.dll is also there?
Yes it is. The autoload feature reads the plugin one by one in alpabetical order until it finds the function it needs.
Here it looks for "GripCrop", finds it in "Gripfit_preview" (that is before Gripfit_yv12 in alpha order), and tries to use it. That's wrong.

In a general way, don't put any dll designed for 2.0x (like gripfit_preview) into the plugin directory of 2.5x
Reply With Quote
  #84  
07-20-2003, 07:23 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 jorel
TemporalCleaner(6+nf,13+nf)
Little fix there : as SwitchThreshold can be egual to 4 and the limits for temporalcleaner parameters are (10,15), the correct line is :

TemporalCleaner(6+nf,11+nf)

Quote:
are you using tmpgen259? (i don't understand your version posted)
change, some people got problems with 259 version!
Everyone making MPEG1 encoding had That's a bug in this tmpgenc version (it does every MPEG1 video in CBR where KVCD need VBR).
Reply With Quote
  #85  
07-20-2003, 08:20 AM
jorel jorel is offline
Invalid Email / Banned / Spammer
 
Join Date: Aug 2002
Location: Brasil - MG - third stone from the sun
Posts: 5,570
Thanks: 0
Thanked 0 Times in 0 Posts
thanks Phil!

i did this corrections in the script on my first post of this page!

Reply With Quote
  #86  
07-20-2003, 09:45 AM
Thomas Davie Thomas Davie is offline
Free Member
 
Join Date: Jul 2003
Posts: 65
Thanks: 0
Thanked 0 Times in 0 Posts
Quote:
Originally Posted by Dialhot
Quote:
Originally Posted by Thomas Davie
But it is in the directory. Could the problem be that the Gripfit_Preview.dll is also there?
Yes it is. The autoload feature reads the plugin one by one in alpabetical order until it finds the function it needs.
Here it looks for "GripCrop", finds it in "Gripfit_preview" (that is before Gripfit_yv12 in alpha order), and tries to use it. That's wrong.

In a general way, don't put any dll designed for 2.0x (like gripfit_preview) into the plugin directory of 2.5x
Ah thanks! Change made and I'm going away to have breakfast and another shot at success. I had gone to a plugin repository site referenced from Avisynth.org, and neither of the gripfits were listed. So, I just assumed (and wrongly ) that anything not in there must be newer.

A quicj question; GripCrop is supposed to be finding paraemeters or having parameters passed to it via other programs, correct? And not having had informatrion put into the brackets before starting the program? I did download what little documentation was available for GripFit, but could not figure this out.

thanks Phil

Tom
Reply With Quote
  #87  
07-20-2003, 10:04 AM
Thomas Davie Thomas Davie is offline
Free Member
 
Join Date: Jul 2003
Posts: 65
Thanks: 0
Thanked 0 Times in 0 Posts
Hving removed all references to the preview version of Gripfit from my system (and I guess, specifically in the AviSynth2.5 Plugins folder did the trick bewcause a 90 minute television show (MST3K) is happily encoding away as I type.

There appears to be some writing at the top of the encoding, but my nleary, bloodshot eyes will have to rest for a bit.

Absolutely fascinating learning about this stuff.

Tom
Reply With Quote
  #88  
07-24-2003, 12:45 AM
Pikku-Kalle Pikku-Kalle is offline
Free Member
 
Join Date: Jul 2003
Location: Finland
Posts: 7
Thanks: 0
Thanked 0 Times in 0 Posts
Kwaq!
I used your ini files and got two files with audio out of sync.
I changed the prediction to 0.95 as you said in earlier post and
got only one file but the audio is still out of sync.
Any suggestions?
Reply With Quote
  #89  
07-24-2003, 04:07 AM
Dialhot Dialhot is offline
Free Member
 
Join Date: May 2003
Posts: 10,463
Thanks: 0
Thanked 0 Times in 0 Posts
What is your source ?
Reply With Quote
  #90  
07-24-2003, 05:23 AM
Pikku-Kalle Pikku-Kalle is offline
Free Member
 
Join Date: Jul 2003
Location: Finland
Posts: 7
Thanks: 0
Thanked 0 Times in 0 Posts
My source is dvd.
Reply With Quote
  #91  
07-24-2003, 05:43 AM
Dialhot Dialhot is offline
Free Member
 
Join Date: May 2003
Posts: 10,463
Thanks: 0
Thanked 0 Times in 0 Posts
You convert a DVD into a KVCD with DVD2SVCD and you have synch problem ?

Strange... D2S handles that point very well normaly. Do you have 1.1.3 build 2 ? Jorel always said this version has problems.

Can you confirm Jorel ?
Reply With Quote
  #92  
07-24-2003, 05:45 AM
kwag kwag is offline
Free Member
 
Join Date: Apr 2002
Location: Puerto Rico, USA
Posts: 13,537
Thanks: 0
Thanked 0 Times in 0 Posts
Pikku-Kalle,

I assume you played your mpeg file in WMP
If you used WinDVD or PowerDVD, your audio will probably sound out of sync, because they don't behave correctly with MPEG-1 VBR (if that's what you encoded)
If it sounds in sync in WMP, stop reading, because your file is correct
Read on if above is still out of sync in WMP.
If you ripped the process with DVD2SVCD, use the other option to rip. I believe DVD2SVCD uses vstrip and another one I can't recall the name now. So change the internal ripper to the one you didn't use. If that doesn't fix the problem, then the problem is with the source. I've had a couple of movies that failed miserably after about half of the movie. I recall "Kate & Leopold", where we had to extract the audio with MPEG Mediator and then encode to .mp2, because the audio extraction with DVD2AVI (to AC3) and later encoded to .mp2 always cause the out of sync issue. So there are many conditions that can cause the problem. Hopefully, with one of these methods, you'll get your audio back in sync

-kwag
Reply With Quote
  #93  
07-24-2003, 05:56 AM
Pikku-Kalle Pikku-Kalle is offline
Free Member
 
Join Date: Jul 2003
Location: Finland
Posts: 7
Thanks: 0
Thanked 0 Times in 0 Posts
@Dialhot
Yes I have 1.1.3 build 2. Should I try another version?

@Kwaq
I used dvd decrypter for the ripping. Maybe I should let dvd2scvd rip it?
Reply With Quote
  #94  
07-24-2003, 05:59 AM
Pikku-Kalle Pikku-Kalle is offline
Free Member
 
Join Date: Jul 2003
Location: Finland
Posts: 7
Thanks: 0
Thanked 0 Times in 0 Posts
I don't remember if tried it in WMP, but I will as soon as I get
home from work and I'll let you know.
Thanks for the advice Kwag & Dialhot.
Reply With Quote
  #95  
07-24-2003, 06:05 AM
jorel jorel is offline
Invalid Email / Banned / Spammer
 
Join Date: Aug 2002
Location: Brasil - MG - third stone from the sun
Posts: 5,570
Thanks: 0
Thanked 0 Times in 0 Posts
Quote:
Originally Posted by Dialhot
You convert a DVD into a KVCD with DVD2SVCD and you have synch problem ?

Strange... D2S handles that point very well normaly. Do you have 1.1.3 build 2 ? Jorel always said this version has problems.

Can you confirm Jorel ?
yes Phil,
i confirm but not with audio/video sincro.
i got problems with tmpgenc in d2s(and tons more members in d9 too)

then i change to d2s 113build3beta7 and all problems gone.
was founded here,don't use right click(save as )or download managers:

for you Pikku-Kalle (welcome in forum)and all:

http://forum.doom9.org/showthread.php?s=&threadid=51096




Reply With Quote
  #96  
07-24-2003, 06:17 AM
kwag kwag is offline
Free Member
 
Join Date: Apr 2002
Location: Puerto Rico, USA
Posts: 13,537
Thanks: 0
Thanked 0 Times in 0 Posts
Quote:
Originally Posted by Pikku-Kalle

@Kwaq
I used dvd decrypter for the ripping. Maybe I should let dvd2scvd rip it?
If you did, then it seems the problem is in the audio extraction.
If you use DVD2SVCD for ripping, and the problem persists, then extract your audio with MPEG Mediator.

-kwag
Reply With Quote
  #97  
07-25-2003, 06:21 AM
Pikku-Kalle Pikku-Kalle is offline
Free Member
 
Join Date: Jul 2003
Location: Finland
Posts: 7
Thanks: 0
Thanked 0 Times in 0 Posts
Still out of sync. I tried everything.
I did a one cd svcd and had no problems, except the quality sucks.
But when I put those modified inis, I start having problems
with the audio. I'm trying different settings now so I'll get back
when I have some results.
Reply With Quote
  #98  
07-25-2003, 06:27 AM
jorel jorel is offline
Invalid Email / Banned / Spammer
 
Join Date: Aug 2002
Location: Brasil - MG - third stone from the sun
Posts: 5,570
Thanks: 0
Thanked 0 Times in 0 Posts
can you post the d2s log and "encoded audio" log
Reply With Quote
  #99  
07-25-2003, 05:37 PM
Pikku-Kalle Pikku-Kalle is offline
Free Member
 
Join Date: Jul 2003
Location: Finland
Posts: 7
Thanks: 0
Thanked 0 Times in 0 Posts
Sorry for delay on responses.
I used Avalons guide and matrices and now the audio is in sync.
Thank you all for trying to help me.
Reply With Quote
  #100  
08-31-2003, 03:28 PM
t1955feb t1955feb is offline
Free Member
 
Join Date: Apr 2002
Posts: 30
Thanks: 0
Thanked 0 Times in 0 Posts
Thanks for the template it works great but is it possible to make to make one for SKVCD?
Thanks
__________________
TJ
Reply With Quote
Reply




Similar Threads
Thread Thread Starter Forum Replies Last Post
DVD2SVCD: Mux audio from two .vob files oxycotton420 Video Encoding and Conversion 9 06-09-2004 11:12 PM
DVD2SVCD: DS2 Settings files? neu-ikc Video Encoding and Conversion 1 01-02-2004 04:53 PM
DVD2SVCD: Finally got MA working in AVI2SVCD, with KVCD_LBR.ini, but... Thomas Davie Video Encoding and Conversion 24 07-22-2003 12:37 PM
DVD2SVCD: need a new kvcd_lbr.ini jorel Video Encoding and Conversion 6 12-21-2002 06:08 PM
DVD2SVCD: Bitrate tab in dvd2s(K)vcd jorel Video Encoding and Conversion 1 10-28-2002 09:34 AM

Thread Tools



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