Why not register?
Author |
Message |
RedVeil
|
Posted: Sat Jan 17, 2009 1:18 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 |
|
 |
elguaxo
|
Posted: Sat Jan 17, 2009 1:31 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
|
Then something is wrong on your side. Blocky sample and the script I used: Code: | DGDecode_mpeg2source("H:\videos\samples\SampleWarrior.d2v")
deblock_qed( quant1=30,quant2=60)
crop( 0, 0, -2, -4) Spline36Resize(720,400) |

|
|
Top |
|
 |
RedVeil
|
Posted: Sun Jan 18, 2009 11:33 am 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 |
|
 |
RedVeil
|
Posted: Sat Jan 24, 2009 5:12 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 |
|
 |
elguaxo
|
Posted: Sat Jan 24, 2009 5:32 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
|
post a sample 
|
|
Top |
|
 |
elguaxo
|
Posted: Sat Jan 24, 2009 7:09 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 |
|
 |
RedVeil
|
Posted: Sat Jan 24, 2009 8:07 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.
|
When I use nnedi I get the following AviSynth error message: Quote: | error:"nnedi: height must be mod 2!" |
Here's my current script. The height should be dividable by 2.
# Created with Notepad
#
# http://gknot.doom9.org
# PLUGINS
LoadPlugin("D:\MYPROG~1\GORDIA~1\DGMPGDec\DGDecode.dll")
LoadPlugin("D:\MyProgies\AviSynth2.5\plugins_extra\nnedi.dll")
LoadPlugin("D:\MyProgies\AviSynth2.5\plugins_extra\TMM.dll")
LoadPlugin("D:\MyProgies\AviSynth2.5\plugins_extra\TDeint.dll")
# SOURCE
mpeg2source("D:\Temp\ravenous_deleted_scenes.d2v")
# CROPPING
crop(6,126,710,322)
#ConvertToYUY2()
#--------------- Scene 1 - "shit shoveling scene" ---------------
# needs deinterlacing + looks very blurry
sc01 = trim(0, 756)
#interp = sc01.nnedi(field=1)
#sc01 = tdeint(order=1, field=1, type=1, edeint=interp, emask=TMM(order=1, field=1))
# !!! Frame 757 has to be dropped !!!
#--------------- Scene 2, 3, 4 - "shaving", "winter", "night" ---------------
#... # Put the scenes together
sc01#++sc020304++sc05++sc06a++sc06b++sc06c07++sc0809++sc09++sc1011++sc12++sc1314++sc15a++sc15b
# RESIZING
#Spline36Resize(640,272)
# COMPRESSIBILITY CHECK
# !!!!Snip Size now has to be 14 for use in GKnot!
#SelectRangeEvery(280,14)
|
_________________ Keep downloaded files shared as long as possible! You wouldn't be able to download without people sharing the stuff.

 Next release will be: La Cité Des Entfants Perdu (1995) + Making Of (Status: working on the subtitles) Last release was: Svengali (1931)
|
|
Top |
|
 |
elguaxo
|
Posted: Sat Jan 24, 2009 8:09 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
|
RedVeil wrote: | When I use nnedi I get the following AviSynth error message: Quote: | error:"nnedi: height must be mod 2!" |
|
try deinterlacing before cropping.
|
|
Top |
|
 |
RedVeil
|
Posted: Sat Jan 24, 2009 8:18 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.
|
OK that helped me to get rid of the error, so I am currently doing this:
sc01 = trim(0, 756) interp = sc01.nnedi(field=1) sc01.tdeint(order=1, field=1, type=1, edeint=interp, emask=sc01.TMM(order=1, field=1))
|
But the result still looks interlaced like before.  EDIT: I forgot the "sc01 =" in the last line.
sc01 = sc01.tdeint(order=1, field=1, type=1, edeint=interp, emask=sc01.TMM(order=1, field=1))
|
This does work well! THANK YOU!!!!!!!!! 
_________________ Keep downloaded files shared as long as possible! You wouldn't be able to download without people sharing the stuff.

 Next release will be: La Cité Des Entfants Perdu (1995) + Making Of (Status: working on the subtitles) Last release was: Svengali (1931)
|
|
Top |
|
 |
elguaxo
|
Posted: Sat Jan 24, 2009 8:21 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
|
it's probably the trimming. try without trimming and if it works, you'll know where the problem is.  edit: fixed! great 
|
|
Top |
|
 |
RedVeil
|
Posted: Sun Jan 25, 2009 12:08 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 |
|
 |
elguaxo
|
Posted: Sun Jan 25, 2009 12:59 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
|
Fieldblends. I'd try bobbing (50fps) and then restoring it to 25fps using srestore. bobbing script similar to the deinterlacing script you are using now: Code: | Interp = nnedi(field=3) TDeint(mode=1,order=1,type=1,edeint=Interp,emask=TMM(mode=1,order=1)) |
and then Srestore: http://forum.doom9.org/showthread.php?t=95924Code: | srestore(frate=25,cache=5) |
The latest version of Srestore has a big memory leak: http://forum.doom9.org/showpost.php?p=1 ... tcount=305Last week I had to process the video in smaller so I wouldn't run out of RAM: url=http://bad-good.org/phpBB2/viewtopic.php?p=121643#p121643
|
|
Top |
|
 |
RedVeil
|
Posted: Sun Jan 25, 2009 3:07 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 |
|
 |
RedVeil
|
Posted: Mon Jan 26, 2009 10:21 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 |
|
 |
elguaxo
|
Posted: Mon Jan 26, 2009 10:41 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
|
RedVeil wrote: | Sorry for being such a newbie but I can't seem to get this working.  |
no problem! upload a sample that has this part: 
|
|
Top |
|
 |
RedVeil
|
Posted: Thu Jan 29, 2009 5:24 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 |
|
 |
RedVeil
|
Posted: Wed Feb 04, 2009 5:14 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 |
|
 |
elguaxo
|
Posted: Wed Feb 04, 2009 7:35 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
|
I have it, I'll take a look tomorrow! 
|
|
Top |
|
 |
RedVeil
|
Posted: Fri Feb 06, 2009 8:02 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 |
|
 |
Who is online |
Users browsing this forum: No registered users and 2 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
|
|