www.dead-donkey.com
https://forum.dead-donkey.com/

Filtering Help Required Please
https://forum.dead-donkey.com/viewtopic.php?f=31&t=17373
Page 1 of 2

Author:  BadBugs [ Tue Mar 04, 2008 10:09 pm ]
Post subject:  Filtering Help Required Please

Terrible source DVD of The Wicker Man Directors Cut:

Image

It looks like someones dragged a comb down the screen :?

I've tried degrainmedain in combination with MV Degrain & its still there. Anyone able to help?

Vob Sample: http://www.mediafire.com/?9gtyknnruvr

Thanks :D

Author:  spudthedestroyer [ Tue Mar 04, 2008 11:01 pm ]
Post subject:  Re: Filtering Help Required Please

wow, i don't recall my copy of the wicker man looking like that... i was posting because i could have sworn blind there was an AFR of the movie out but can't seem to find it.

Author:  karstmobile [ Tue Mar 04, 2008 11:31 pm ]
Post subject:  Re: Filtering Help Required Please

iirc the directors cut has additional scenes that are of poorer quality... most of the film looks great... except those

Author:  BadBugs [ Tue Mar 04, 2008 11:33 pm ]
Post subject:  Re: Filtering Help Required Please

I've never seen the cut version so couldnt guess if this is one of those scenes... I only checked the start of vob1 so I'll check a bit further along & see if its still present :)

Author:  BadBugs [ Tue Mar 04, 2008 11:36 pm ]
Post subject:  Re: Filtering Help Required Please

Fairplay Karst, youre right, I musta picked a clip from one of the DC only scenes :lol:

Author:  karstmobile [ Tue Mar 04, 2008 11:39 pm ]
Post subject:  Re: Filtering Help Required Please

Sucks though... whole thing should be prefect for an awesome film like this. :matrix:

Author:  BadBugs [ Tue Mar 04, 2008 11:42 pm ]
Post subject:  Re: Filtering Help Required Please

I'm wondering if theres a way to clean these scenes up though? There cant be many of them & I suspect that they'll all be the same quality & with zone options I can switch the filters at each point in the film.
Wonder where to ask? Lux is AWOL atm so need to venture further afield :wacky:

Author:  RedVeil [ Wed Mar 05, 2008 10:09 pm ]
Post subject:  Re: Filtering Help Required Please

I am not 100% sure but the following topic might help you out: http://forum.dead-donkey.com/viewtopic.php?f=2&t=16965.

Author:  ViSCeRaL [ Wed Mar 05, 2008 11:08 pm ]
Post subject:  Re: Filtering Help Required Please

You could try RemoveNoiseMC with LQ or MQ_Filter. Seems to clean up muddy VHS sources reasonably well.

Author:  BadBugs [ Thu Mar 06, 2008 12:29 am ]
Post subject:  Re: Filtering Help Required Please

Thanks for the tip Visceral, unfortunately I've not tried either of those filters before (I've not tried very many in fact).
Do you have any links to the filters or sample activation scripts? or even cheekier, could you post a sample script I could try?

Thanks :D

Author:  ViSCeRaL [ Thu Mar 06, 2008 8:55 pm ]
Post subject:  Re: Filtering Help Required Please

Code:
LoadPlugin("C:\VIDEOE~1\GORDIA~1\DGMPGDec\DGDecode.dll")
LoadPlugin("C:\VIDEOE~1\GORDIA~1\AviSynthPlugins\removegrain.dll")
LoadPlugin("C:\VIDEOE~1\GORDIA~1\AviSynthPlugins\repair.dll")
LoadPlugin("C:\VIDEOE~1\GORDIA~1\AviSynthPlugins\decomb.dll")
LoadPlugin("C:\VIDEOE~1\GORDIA~1\AviSynthPlugins\degrainmedian.dll")
LoadPlugin("C:\VIDEOE~1\GORDIA~1\AviSynthPlugins\warpsharp.dll")
LoadPlugin("C:\VIDEOE~1\GORDIA~1\AviSynthPlugins\MaskTools.dll")
LoadPlugin("C:\VIDEOE~1\GORDIA~1\AviSynthPlugins\nnedi.dll")
LoadPlugin("C:\VIDEOE~1\GORDIA~1\AviSynthPlugins\masktools\mt_masktools.dll")
LoadPlugin("C:\VIDEOE~1\GORDIA~1\AviSynthPlugins\vaguedenoiser\VagueDenoiser.dll")
LoadPlugin("C:\VIDEOE~1\GORDIA~1\AviSynthPlugins\tivtcv105\tivtc.dll")
LoadPlugin("C:\VIDEOE~1\GORDIA~1\AviSynthPlugins\yadifmod\yadifmod.dll")
Import("C:\VIDEOE~1\GORDIA~1\AviSynthPlugins\seesaw.avs")
Import("C:\VIDEOE~1\GORDIA~1\AviSynthPlugins\removenoisemc.avs")
Import("C:\VIDEOE~1\GORDIA~1\AviSynthPlugins\limitedsharpenfaster.avs")

DGDecode_mpeg2source("C:\_JBDC\jbd.d2v")
interp = nnedi()
deint=yadifmod(mode=0,edeint=interp)
tfm(pp=4,chroma=true,cthresh=-1,clip2=deint).tdecimate()
crop(18,2,692,472)
Spline36Resize(576,432)

##high noise or analog capture
#function lq_filter(clip c) {
#  c=c.RemoveNoiseMC(rdlimit=18,rgrain=3,denoise=14)
#  c=c.VagueDenoiser(threshold=0.6, nsteps=6, chromaT=0.6, percent=75)
#  c=c.deen("a3d",rad=3,thrY=3,thrUV=5,min=0.25,tthY=2,tthUV=3,scd=6)
#  c=c.LimitedSharpenFaster(Smode=4,strength=24,overshoot=1,wide=false,ss_x=1.3,ss_y=1.3)
#  return c
#}

##medium noise, higher grain
function mq_filter(clip c)
{
  c=c.RemoveNoiseMC(rdlimit=10,rgrain=2,denoise=8)
  c=c.LimitedSharpenFaster(Smode=4,strength=20,overshoot=1,wide=false,ss_x=1.3,ss_y=1.3)
  return c
}

###for slight noisy video or spot/dirt removing only
#function hq_filter(clip c)
#{
#  c=c.RemoveNoiseMC(rdlimit=6,rgrain=1,denoise=0)
#  c=c.LimitedSharpenFaster(Smode=4,strength=18,overshoot=0,wide=false,ss_x=1.3,ss_y=1.3)
#  return c
#}

#SelectRangeEvery(280,14)


Obviously that's using mq_filter, you can comment/uncomment out as necessary. Also check out AvsP for real time comparisions of filtering

Author:  spudthedestroyer [ Fri Mar 07, 2008 12:19 pm ]
Post subject:  Re: Filtering Help Required Please

you'd want to split by frames too, so you are only applying the noise filter/cleanup filter to the required segments of the movie.

Author:  elchupacabra [ Fri Mar 07, 2008 12:52 pm ]
Post subject:  Re: Filtering Help Required Please

Hey. Could you elaborate on how that is done? I already asked this over here http://forum.dead-donkey.com/viewtopic.php?f=2&t=16962 and nobody told me. :evil:

Author:  spudthedestroyer [ Fri Mar 07, 2008 1:05 pm ]
Post subject:  Re: Filtering Help Required Please

i'm not quite sure elchupacabra, i don't know where the framesizes would come into it on that particular script.

Author:  BadBugs [ Fri Mar 07, 2008 3:21 pm ]
Post subject:  Re: Filtering Help Required Please

Thanks for the script Visceral :mrgreen:
Unfortunately it didnt help so I'm gonna stop worrying about that for the timebeing as I have a more serious one...

I've cut a cleaner section from the source & tried all the basic deinterlacing options for it & they all produce the same result...
Stuttering.

Using this code created a 50fps rip that ran smooth:
LoadPlugin("C:\PROGRA~2\GORDIA~1\DGMPGDec\DGDecode.dll")

# SOURCE
mpeg2source("F:\GK CRAP\split.d2v")

assumetff().separatefields()


I'm not sure what a blended field is but I'm guessing it means this (Cap from the 50fps clip):
Image

Doing some research I tried a few things with decomb.dll that are suggested in the documentation. This is the recommended one if I read it right:
LoadPlugin("C:\PROGRA~2\GORDIA~1\DGMPGDec\DGDecode.dll")
LoadPlugin("C:\PROGRA~2\GORDIA~1\AviSynthPlugins\decomb.dll")

# SOURCE
mpeg2source("F:\The Wicker Man\GK CRAP\split2.d2v")

# DEINTERLACING (3) - special requests
AssumeTFF()
Telecide(blend=true)

# CROPPING
crop(16,14,688,548)

# RESIZING
spline36resize(704,384)


This doesn't help. Its more like a slideshow during movement. Can anyone suggest a filter for this please?

Vob Sample: http://www.mediafire.com/?cfztnor5yey

I'm about ready to give up on this :voodoo:

Author:  BadBugs [ Sat Mar 08, 2008 7:00 am ]
Post subject:  Re: Filtering Help Required Please

neuron2 replied, anybody know this guy? (He makes AVISynth filters)
Quote:
You have blended fields from a standards conversion.
You'll get better support at Doom9 for this. I have zero interest in recovering field-blended garbage.

Nice bloke. :prat:

Author:  spudthedestroyer [ Sat Mar 08, 2008 6:58 pm ]
Post subject:  Re: Filtering Help Required Please

Do you get blended fields if you don't convert to 50fps? I found that fucks things up in circumstances like this. You'd need to use a better deinterlacer that doesn't blend.

Author:  BadBugs [ Sat Mar 08, 2008 10:50 pm ]
Post subject:  Re: Filtering Help Required Please

I'm not entirely sure what you mean spud :?

The vob sample above (http://www.mediafire.com/?cfztnor5yey) is uncompressed, only 6.87mb & 10secs long.

This is what neuron2 came to his conclusion with.

Could you have a go at it please? I'm new to this filtering & like with every other rip I've done, theres been something new to fix although this one has hit a brick wall. I've kept logs of all other filters that I've used or been suggested to me so I can go back & try them on future rips with similar problems.
I could easily just rip it as an AFR but the end result would be crap & being a perfectionist I'd rather not do it unless I can get it as good as possible. :suicide:
I've got a compression of 88.3% with SoulhuntersV8 with no filtering at 1.44GB so this could be good if you or anyone can help fix this stuttering. :watchingyou:

Thanks :D

Author:  elguaxo [ Thu Apr 10, 2008 6:31 pm ]
Post subject:  Re: Filtering Help Required Please

check the Ripping/encoding/releasing Q & A thread at SBiG, there are tons of samples how to deal with field-blends:

http://bad-good.org/phpBB2/viewtopic.php?p=83259#p83259

Edit:
spudthedestroyer wrote:
You'd need to use a better deinterlacer that doesn't blend.

fieldblends don't have anything to do with deinterlacing

Author:  spudthedestroyer [ Thu Apr 10, 2008 7:45 pm ]
Post subject:  Re: Filtering Help Required Please

elguaxo wrote:
Edit:
spudthedestroyer wrote:
You'd need to use a better deinterlacer that doesn't blend.

fieldblends don't have anything to do with deinterlacing


erm, yes it does, if your source isn't blended and your outcome is, it can very well be your deinterlacing method... run any deinterlacer with "average", "blend" or "combine" in its title; that is a field blend operation to return a progressive frame.

Examples a plenty:
http://www.100fps.com/

Page 1 of 2 All times are UTC [ DST ]
What's blood for, if not for shedding?