logo Sign In

Oldschooljedi

User Group
Members
Join date
8-May-2006
Last activity
23-Oct-2015
Posts
241

Post History

Post
#314046
Topic
GOUT image stabilization - Released
Time
g-force,

I did try to run the script a few times and updated script like you posted above. But I always have the same issue: The encoder shuts down every time I hit the "encode" button.
I also tried exactly the script you have posted (for NTSC-source) and have the same problem. I assume, that one of my avisynth-dll's is the wrong one, but I'm not sure which one it is. I did download RemoveGrain and RemoveDirt from your link above but it didn't help.
So could you maybe post the download links of the .dll's you've been using or maybe make a zip-file of your .dll' and load them up to rapidshare? This would help...
Post
#313981
Topic
GOUT image stabilization - Released
Time
g-force said:

I checked your conversion to PAL resolution, and it keeps it close enough to the correct dimensions. It may not run as quickly though, since everying before the resize is MOD2. You might try:

orig=Crop(0,120,0,-120,align=true)
...
Spline36Resize(720,448)
...
AddBorders(6,64,6,64)

I'll check all the pages you posted for the plugins and verify against mine tonight when I get home. In the mean time, make sure you have Removedirt from here: http://home.arcor.de/kassandro/RemoveDirt/RemoveDirt.htm
and Removegrain from here:
http://home.pages.at/kassandro/RemoveGrain/

-G



I did download RemoveGrain and RemoveDirt there, and updated the script like you suggested, but it didn't help.

I have to go to work now, and I'll try again tomorrow...
Post
#313969
Topic
GOUT image stabilization - Released
Time
g-force,

I'm trying to start my testencodings at the moment and I did modify your script for the PAL-DVD. This is the script:

Mpeg2Source("C:\ANH.d2v",cpu2="ooooxo")

orig=Crop(0,124,0,-126,align=true)

temp=orig.TemporalSoften(7,255,255,25,2)
rep=Repair(temp,orig,mode=16).TemporalSoften(1,255,255,25,2)
source=Interleave(rep,orig,rep)
mdata=DePanEstimate(source, range=1, trust=0, dxmax=1, dymax=0)
DePan(source, data=mdata, offset=1)
SelectEvery(3,2)

a=EEDI2().TurnRight().EEDI2().TurnLeft().Trim(0,58642)
b=EEDI2(maxd=15,nt=8).TurnRight().EEDI2(maxd=15,nt=8).TurnLeft().Trim(58643,58994)
c=EEDI2().TurnRight().EEDI2().TurnLeft().Trim(58995,0)
a+b+c #needed for interrogation scene

Spline36Resize(720,432)
FFT3DFilter(sigma=1,sharpen=.7)
BlindPP(cpu2="ooooxo")

source=last

backward_vec1= source.MVAnalyse(isb=true, delta=1,pel=2,overlap=4,sharp=1,idx=1)
forward_vec1 = source.MVAnalyse(isb=false,delta=1,pel=2,overlap=4,sharp=1,idx=1)
bw1 = source.MVCompensate(backward_vec1,idx=1)
fw1 = source.MVCompensate(forward_vec1, idx=1)

inter=Interleave(bw1,bw1,bw1,source,fw1,fw1,fw1)
intersmooth=inter.Clense().TemporalSoften(1,255,255,10,2)

RestoreMotionBlocks(intersmooth,inter,neighbour=inter,alternative=inter,gmthreshold=100,dist=1,dmode=3,debug=false,noise=10,noisy=15,grey=false,show=false)
SelectEvery(7,3)

pmax = source.MT_Logic(bw1,"max").MT_Logic(fw1,"max")
pmin = source.MT_Logic(bw1,"min").MT_Logic(fw1,"min")
Sharpen(.6)
MT_Clamp(pmax,pmin,0,0,U=2,V=2)

restored=last
a=source.Levels(0,1.5,150,0,255)
b=restored.Levels(0,1.5,150,0,255)
ConditionalFilter(restored,source,restored,"(LumaDifference(b,a)/AverageLuma(a))","greaterthan",".01")

Crop(8,0,-4,0,align=true)
AddBorders(6,72,6,72)
Levels(10,1.13,255,0,255) #8 is bare minimum to fix "Tie matte scene"
Tweak(sat=1.08,hue=-4)

My encoder says: "avisynth successfully initialized".

But when I start the encoding my encoders (tried several ones) shut down immediately without notice.

I'm not sure, if I have all avisynth-plugins, that were needed and if they were from the right source.

I'm using:

removedirt from: http://avisynth.org/warpenterprises/<br />removegrain from: http://avisynth.org.ru/<br />EEDI2 from: http://avisynth.org.ru/<br />MVTools from: http://avisynth.org.ru/mvtools/mvtools.html<br />depan and depanestimate from: http://avisynth.org.ru/depan/depan.html<br />fft3dfilter (with fftw3) from: http://avisynth.org.ru/fft3dfilter/fft3dfilter.html<br />
Maybe did I download from the false sources?

Do I have all the needed plugins?

Maybe there is a error in my script?

I'm a littlebit confused, because when I load the script, everything seems to be ok.

Any ideas?
Post
#313586
Topic
GOUT image stabilization - Released
Time
g-force said:

New test encode. This one has better local stabilization, less artifacting (actually none that I can see), and temporal sharpening!

http://rapidshare.com/files/99217835/stabilize_hc4.m2v.html

This may be as good as I can get this, so the script is going up as soon as I can annotate it.

Let me know what you think!

-G


Wow!

Can't believe the source is from the GOUT!!!
Post
#309948
Topic
GOUT image stabilization - Released
Time
The picture is much, much better than the original. This is great!

I have no idea to make the picture better and have no suggestion for the "R2-wobble".

Until Moth3r and Arnie.d discussed some avisynth-scripts in the "GOUT-antialiasing"-treat I even did not know how to use avisynth-plugins and always used one-klick-tools for encoding (shame on me )

At the moment I'm learning how powerful avisynth-filtering can be...
Post
#309767
Topic
GOUT image stabilization - Released
Time
Oops, now I have this error again and need a little help. I did upload a little clip of my encodings:

Link

Could you take a look at it?

Look at the top black bar.

Any ideas what is wrong with the script?

Here it is (modified for PAL-source):

mpeg2source("C:\ANH.d2v")

orig=Crop(0,124,0,-126,align=true)

temp=TemporalSoften(orig,48,255,255,10,2)
source=interleave(temp,orig,temp)

mdata=DePanEstimate(source, range=1, trust=0, dxmax=1, dymax=0)
DePan(source, data=mdata, offset=1)

selectevery(3,2)

a=EEDI2().TurnRight().EEDI2().TurnLeft().trim(0,58642)
b=EEDI2(maxd=15,nt=8).TurnRight().EEDI2(maxd=15,nt=8).TurnLeft().trim(58643,58994) #needed for interrogation scene
c=EEDI2().TurnRight().EEDI2().TurnLeft().trim(58995,0)
a+b+c

FFT3DFilter(sigma=2.5, sharpen=1.7)

Crop(16,0,-8,-2,align=true)

Lanczos4Resize(720,432)

Levels(8,1,255,0,255) #8 is bare minimum to fix "Tie matte scene"
DeSpot(sign=1) #sign=1 removes only black spots and keeps fast motion stars
DeSpot(mscene=0) #mscene=0 removes spots only in very static scenes
#show=1 highlights removed spots
tweak(sat=1.08)
addborders(0,72,0,72)

P.S.:

When I use exactly the script you posted, I get the avisynth-error: "width not a multible of 16", probably because my source is PAL.
Post
#305826
Topic
Info: GOUT Anti-aliasing
Time
Originally posted by: DarthBo
Originally posted by: Oldschooljedi
It works really good on my test-encodings (I'm a real dummy in that).

Everything worked fine, as long as I encode without this line: "source.FlimsYLevels(10)"

Any ideas?

I'm guessing it's a typo... FilmsYLevels is probably what it should be.


I'm not sure.

In Moth3r's script the line is "source.FlimsYLevels(10)".

When I try encoding with "source.FilmsYLevels(10)" I get the same error too.

Post
#305822
Topic
Info: GOUT Anti-aliasing
Time
It works really good on my test-encodings (I'm a real dummy in that).

Everything worked fine, as long as I encode without this line: "source.FlimsYLevels(10)"

When I do the encodings with this line in the avisynth-script, I get always this error: there is no function named "FilmsYLevels".
I searched in the doom9 forum and found this link here: Link
I installed the MaskTools-v1.5.5.dll but maybe I need another avisynth-plugin???

Any ideas?
Post
#297715
Topic
Info: GOUT Anti-aliasing
Time
Moth3r,

I tried to make my own transfer of the movie like you described it here, because this looks very, very good. But I get always some errors and I'm not sure, if I did use the right avisynth-plugins. Some of them were not easy to find for download and I'm not sure, if they are the right plugins, that I downloaded. So, would you be willing to zip your avisynth-plugins used for this and post them maybe to rapidshare (for example) so that I could try it again?

This would be nice.

Greetings,

oldschooljedi.
Post
#267449
Topic
Info Wanted: German audio track for Moth3r's ANH?
Time
Laserschwert!

You made it possible!

I have finished the syncronisation of the Moth3r transfers with your german audio track!

I'm very, very happy that I can watch them in german now. The image of the Moth3r laserdisc-capture looks really suprior to me than the image of the GOUT-transfer. Now I have the original trilogy in super picture-quality with the german audiotrack.

Thank you very, very much for uploading the german audiotracks!!!!!!!!!!!!!