Why not register?
Author |
Message |
fuEgo
|
Posted: Thu Jun 19, 2008 2:45 pm Post subject: Re: Beginners Guide To Ripping With Gordian Knot |
|
Blood Sucking Freak Joined: Thu Apr 17, 2008 11:30 am Posts: 187
|
Thank you for input, elchupacabra. spud wrote: | The dvd is anamorphic so you need to relax ITU-R in gknot, that should make it look better. |
My ITU-R was turned off cause the DVD is anamorphic:  Edit: I have to cut the black from the sides and then I get the little vertically (101%) stretch. See my settings.
|
|
Top |
|
 |
elchupacabra
|
Posted: Thu Jun 19, 2008 4:07 pm Post subject: Re: Beginners Guide To Ripping With Gordian Knot |
|
The Ancient One Joined: Sat Oct 20, 2007 10:31 am Posts: 3654
|
Ok. I just wanted to make sure your rip is going to be perfect. 
|
|
Top |
|
 |
fuEgo
|
Posted: Mon Jun 23, 2008 2:00 pm Post subject: Re: Beginners Guide To Ripping With Gordian Knot |
|
Blood Sucking Freak Joined: Thu Apr 17, 2008 11:30 am Posts: 187
|
elguaxo wrote: | I'm working on a Beginners Guide to Ripping with MeGUI. I will post it next week and I won't delete the screenshots  |
Hi elguaxoHow's it going with your guide...? And did you look into the SeeSaw setting? THX in advance.
|
|
Top |
|
 |
elchupacabra
|
Posted: Mon Jun 23, 2008 3:27 pm Post subject: Re: Beginners Guide To Ripping With Gordian Knot |
|
The Ancient One Joined: Sat Oct 20, 2007 10:31 am Posts: 3654
|
|
Top |
|
 |
ViSCeRaL
|
Posted: Mon Jun 23, 2008 4:06 pm Post subject: Re: Beginners Guide To Ripping With Gordian Knot |
|
The Devil, Probably Joined: Thu Jul 24, 2003 10:13 am Posts: 2029 Location: The Slab
|
AvsP is a neat little app that lets you see the immediate effect of tweaking script settings. Good for playing around with parameters before committing to any encoding time. http://avisynth.org/qwerpoi/
|
|
Top |
|
 |
elguaxo
|
Posted: Mon Jun 23, 2008 4:06 pm Post subject: Re: Beginners Guide To Ripping With Gordian Knot |
|
Master Of The Dead Donkey Joined: Mon Jun 19, 2006 4:01 pm Posts: 708
|
fuEgo wrote: | How's it going with your guide...? |
still working on it! fuEgo wrote: | And did you look into the SeeSaw setting? |
default values work very good:  Code: | Import("D:\AviSynth 2.5\plugins\SeeSaw.avs")
DGDecode_mpeg2source("I:\videos\fuego\Oh.in.Ohio.demuxed.d2v",info=3) ColorMatrix(hints=true)
crop( 2, 72, -2, -72) Spline36Resize(720,304)
SeeSaw() |
Perhaps you will need to switch from Didées 6of9 to heini_mr.
|
|
Top |
|
 |
RedVeil
|
Posted: Mon Jun 23, 2008 4:26 pm Post subject: Re: Beginners Guide To Ripping With Gordian Knot |
|
The Devil, Probably Joined: Fri Oct 26, 2007 3:40 pm Posts: 2250 Location: Inside my body.
|
|
Top |
|
 |
fuEgo
|
Posted: Mon Jun 23, 2008 4:58 pm Post subject: Re: Beginners Guide To Ripping With Gordian Knot |
|
Blood Sucking Freak Joined: Thu Apr 17, 2008 11:30 am Posts: 187
|
THX elguaxo, looks good. But I get this n00b error:  What is wrong? elchupacabra: I would like to, but first I need some guidelines...  Edit (my script so far): Quote: | # Created with Gordian Knot # # http://gknot.doom9.org# PLUGINS LoadPlugin("C:\PROGRA~1\GordianKnot\DGMPGDec\DGDecode.dll") LoadPlugin("C:\PROGRA~1\GordianKnot\AviSynthPlugins\decomb.dll") LoadPlugin("C:\PROGRA~1\GordianKnot\AviSynthPlugins\UnDot.dll") Import("C:\Program Files\AviSynth 2.5\plugins\SeeSaw.avs") # SOURCE mpeg2source("H:\Make Xvid\The Oh in Ohio\Project_4\Oh.in.Ohio_5.d2v") ColorMatrix(hints=true) # DEINTERLACING (1) FieldDeinterlace(blend=false) crop( 2, 72, -2, -72) Spline36Resize(720,304) SeeSaw() |
Next error: 
|
|
Top |
|
 |
fuEgo
|
Posted: Mon Jun 23, 2008 8:32 pm Post subject: Re: Beginners Guide To Ripping With Gordian Knot |
|
Blood Sucking Freak Joined: Thu Apr 17, 2008 11:30 am Posts: 187
|
This seems to work... Code: | # Created with Gordian Knot # # http://gknot.doom9.org
# PLUGINS LoadPlugin("C:\PROGRA~1\GordianKnot\DGMPGDec\DGDecode.dll") LoadPlugin("C:\PROGRA~1\GordianKnot\AviSynthPlugins\decomb.dll") LoadPlugin("C:\PROGRA~1\GordianKnot\AviSynthPlugins\UnDot.dll") LoadPlugin("C:\PROGRA~1\GordianKnot\AviSynthPlugins\ColorMatrix.dll")
Import("C:\Program Files\AviSynth 2.5\plugins\SeeSaw.avs")
# SOURCE mpeg2source("H:\Make Xvid\The Oh in Ohio\Project_4\Oh.in.Ohio_5.d2v") ColorMatrix(d2v="Oh.in.Ohio_5.d2v")
# DEINTERLACING (1) FieldDeinterlace(blend=false)
crop( 2, 72, -2, -72) Spline36Resize(720,304)
SeeSaw() |
According to my calculation it will take ~10 hours... 
|
|
Top |
|
 |
ViSCeRaL
|
Posted: Mon Jun 23, 2008 10:09 pm Post subject: Re: Beginners Guide To Ripping With Gordian Knot |
|
The Devil, Probably Joined: Thu Jul 24, 2003 10:13 am Posts: 2029 Location: The Slab
|
RedVeil wrote: | ViSCeRaL wrote: | AvsP is a neat little app that lets you see the immediate effect of tweaking script settings. Good for playing around with parameters before committing to any encoding time. http://avisynth.org/qwerpoi/ |
Or simply drag&drop your AVS file into virtualdubmod.  |
AvsP gives much more functionality with a live image update. 
|
|
Top |
|
 |
fuEgo
|
Posted: Tue Jun 24, 2008 2:39 am Post subject: Re: Beginners Guide To Ripping With Gordian Knot |
|
Blood Sucking Freak Joined: Thu Apr 17, 2008 11:30 am Posts: 187
|
|
Top |
|
 |
elchupacabra
|
Posted: Tue Jun 24, 2008 8:37 am Post subject: Re: Beginners Guide To Ripping With Gordian Knot |
|
The Ancient One Joined: Sat Oct 20, 2007 10:31 am Posts: 3654
|
Looks good. You could also compare a close picture of a face or something similar. 
|
|
Top |
|
 |
elguaxo
|
Posted: Tue Jun 24, 2008 2:23 pm Post subject: Re: Beginners Guide To Ripping With Gordian Knot |
|
Master Of The Dead Donkey Joined: Mon Jun 19, 2006 4:01 pm Posts: 708
|
@fuego, your script has: Code: | FieldDeinterlace(blend=false) |
but the sample you uploaded was not interlaced.
|
|
Top |
|
 |
fuEgo
|
Posted: Tue Jun 24, 2008 3:01 pm Post subject: Re: Beginners Guide To Ripping With Gordian Knot |
|
Blood Sucking Freak Joined: Thu Apr 17, 2008 11:30 am Posts: 187
|
|
Top |
|
 |
elguaxo
|
Posted: Tue Jun 24, 2008 3:10 pm Post subject: Re: Beginners Guide To Ripping With Gordian Knot |
|
Master Of The Dead Donkey Joined: Mon Jun 19, 2006 4:01 pm Posts: 708
|
Don't know how good or bad is FieldDeinterlace. If it's a smart deinterlacer, then nothing happens. But if it's not that smart, then you will loose some details here and there.
|
|
Top |
|
 |
fuEgo
|
Posted: Tue Jun 24, 2008 3:24 pm Post subject: Re: Beginners Guide To Ripping With Gordian Knot |
|
Blood Sucking Freak Joined: Thu Apr 17, 2008 11:30 am Posts: 187
|
elguaxo wrote: | Don't know how good or bad is FieldDeinterlace. If it's a smart deinterlacer, then nothing happens. But if it's not that smart, then you will loose some details here and there. |
Okay, so I will do it again like this: Code: | # Created with Gordian Knot # # http://gknot.doom9.org
# PLUGINS LoadPlugin("C:\PROGRA~1\GordianKnot\DGMPGDec\DGDecode.dll") LoadPlugin("C:\PROGRA~1\GordianKnot\AviSynthPlugins\decomb.dll") LoadPlugin("C:\PROGRA~1\GordianKnot\AviSynthPlugins\UnDot.dll") LoadPlugin("C:\PROGRA~1\GordianKnot\AviSynthPlugins\ColorMatrix.dll")
Import("C:\Program Files\AviSynth 2.5\plugins\SeeSaw.avs")
# SOURCE mpeg2source("H:\Make Xvid\The Oh in Ohio\Project_4\Oh.in.Ohio_5.d2v") ColorMatrix(d2v="Oh.in.Ohio_5.d2v")
# DEINTERLACING (1) # FieldDeinterlace(blend=false)
crop( 2, 72, -2, -72) Spline36Resize(720,304)
SeeSaw() |
|
|
Top |
|
 |
elguaxo
|
Posted: Tue Jun 24, 2008 3:33 pm Post subject: Re: Beginners Guide To Ripping With Gordian Knot |
|
Master Of The Dead Donkey Joined: Mon Jun 19, 2006 4:01 pm Posts: 708
|
|
Top |
|
 |
fuEgo
|
Posted: Wed Jun 25, 2008 6:52 pm Post subject: Re: Beginners Guide To Ripping With Gordian Knot |
|
Blood Sucking Freak Joined: Thu Apr 17, 2008 11:30 am Posts: 187
|
|
Top |
|
 |
DxaKrator
|
Posted: Sat Jun 28, 2008 9:34 am Post subject: Re: Beginners Guide To Ripping With Gordian Knot |
|
The Practice Girl Joined: Fri Jul 18, 2003 3:08 am Posts: 6099 Location: Back in the glistening folds of Barbara Bush's Twat
|
ViSCeRaL wrote: | RedVeil wrote: | ViSCeRaL wrote: | AvsP is a neat little app that lets you see the immediate effect of tweaking script settings. Good for playing around with parameters before committing to any encoding time. http://avisynth.org/qwerpoi/ |
Or simply drag&drop your AVS file into virtualdubmod.  |
AvsP gives much more functionality with a live image update.  |
Kind of a bear to work with....certainly doesn't work for me like the tutorial shows...I ain't giving up yet though.You're supposed to just hit new tab and be able to see what results are changed in the image preview but that doesn't work for me  I figured out a way but like a I said..a bit of a bear. 
_________________ Small Time Rippers - 2003-2008 - R.I.P.
|
|
Top |
|
 |
ViSCeRaL
|
Posted: Mon Jun 30, 2008 9:27 am Post subject: Re: Beginners Guide To Ripping With Gordian Knot |
|
The Devil, Probably Joined: Thu Jul 24, 2003 10:13 am Posts: 2029 Location: The Slab
|
DxaKrator wrote: | ViSCeRaL wrote: | AvsP gives much more functionality with a live image update.  |
Kind of a bear to work with....certainly doesn't work for me like the tutorial shows...I ain't giving up yet though.You're supposed to just hit new tab and be able to see what results are changed in the image preview but that doesn't work for me  I figured out a way but like a I said..a bit of a bear.  |
Really? I just hit F5 (I think) to refresh the image preview and it opens a panel at the bottom of the window with sliders for all the script variables which you can then play with and see the image update in real time. I've never read a tutorial as it all seems so intuitive.
|
|
Top |
|
 |
Who is online |
Users browsing this forum: No registered users and 0 guests |
Moderator: Help Mods
|
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot post attachments in this forum
|
|