View Full Version : fantasia in avisynth - dvd but still
ExtraEye
2nd February 2010, 13:10
Hi, I decided I wanted to improve the quality of the fantasia DVD. Even though I find it looks better than VHS, and the audio is supposed to be high quality (AC3), I find the video full of noise, interlacing and dot crawl, and the audio's volume very low.
I don't care much for size since I'm really only editing the video for personal storage.
Anyone have suggestions on how to improve the quality of the video?
for now here is a screenshot: (after crop and deinterlace filters)
http://i50.tinypic.com/16jlwdj.jpg
Bigger (http://i47.tinypic.com/2pr89js.jpg)
I threw in a couple of plugins i found and this is what i came up with:
MPEG2Source("project file.d2v", cpu=4)
AMVDeint(mode=4)
Crop(10,0,-10,-4)
Tweak(sat=1.1,cont=1.2)
DeGrainMedian
temporalcleaner
Lanczos4resize(720,560)
zWarpSharp(depth=8)
LSFmod(strength=120)
and the result is cleaner but still "noisy":
http://i45.tinypic.com/1z71v9e.jpg
pic (http://i48.tinypic.com/xbep82.jpg)
Any suggestions on how to improve visuals?
Help with the audio normalization would also be nice.
thank you.
buzzqw
2nd February 2010, 13:31
what's AMVDeint ?
BHH
rkalwaitis
2nd February 2010, 13:32
Use MCTemporalDenoise, or MCSPuds, They will both do a fine job on that source.
ExtraEye
2nd February 2010, 16:46
what's AMVDeint ?
I read about it here (http://www.animemusicvideos.org/guides/avtech3/video-progressive.html#)
Use MCTemporalDenoise, or MCSPuds, They will both do a fine job on that source.
thanks for the advice.
When I try to use "MCTemporalDenoise" it gives me an error: "FFT3DFilter: cannot load FFTW3.DLL !"
EDIT:
MCSPuds works great thanks!
Nightshiver
2nd February 2010, 19:00
Please post a video sample.
Taurus
2nd February 2010, 19:43
When I try to use "MCTemporalDenoise" it gives me an error: "FFT3DFilter: cannot load FFTW3.DLL !"
Did you read the "readme"?:confused:
FFTW3.DLL must be in the search path of your OS.
Normally C:\Windows\System32\ should be fine.
BTW, which OS are you using?
ExtraEye
2nd February 2010, 20:29
Windows 7 64 bit
Yeah I tried downloading FFTW3 dll and putting it in sys32 - didn't work
umm I'm sorry for the simple question but how do I go about making a sample of the video? I tried loading the vob directly in virtualdub and it gives me an error. If I load it as avisynth it creates a huge file when I output a "direct stream copy".
egrimisu
2nd February 2010, 20:51
for x64 environment put the fftw3.dll in the SysWOW64 folder located in the windows folder.
ExtraEye
2nd February 2010, 21:04
for x64 environment put the fftw3.dll in the SysWOW64 folder located in the windows folder.
Where do I get the fftw3.dll?
I couldn't make a direct sample but here's a part I encoded with 700 bit rate x264: (the artifact are pretty much the same)
http://www.mediafire.com/download.php?2wyyzvmgzad
rkalwaitis
2nd February 2010, 22:32
the FFTW3.dll should be in the FFT3dfilter files.
http://avisynth.org.ru/fft3dfilter/fft3dfilter.html
Didée
2nd February 2010, 22:47
I couldn't make a direct sample but here's a part I encoded with 700 bit rate x264: (the artifact are pretty much the same)
Re-encodes are pointless. Maybe you think it's about the same, but in fact, it is not.
Start DGIndex. Load a VOB. Use "[" + "]" buttons to mark start+end of a short segment. Then use "Save project and demux video". Et voilà, there's the sample to upload. It's really not that difficult. ;)
ExtraEye
3rd February 2010, 07:15
Thank you for your patient comments. :)
Here's the sample file: (I didn't know DGIndex could do that. thanks)
http://www.sendspace.com/file/wvlbzc
about "FFTW3.dll", it still doesn't work. I tried downloading FFT3dfilter and just extracting it to both syswow64 and system32 and still doesn't work. Also in the "Features and limitations" he gives 2 links that don't work. :(
Edit: o.k it finally downloaded and it stopped giving me the error.
Finally works :)
Edit 2:
MCTemporalDenoise - does some cleaning
MC_Spuds - cleans a lot. very nice.
Vitaliy Gorbatenko
3rd February 2010, 10:47
not need to put this library in the System directory!! Suffice it to throw the rest of the plugins and add to you script:
SetWorkingDir ( "C: \ system \ Knot \ AviSynthPlugins \")
Form of records to load plug-ins also reduced:
LoadPlugin ( "undot.dll")
LoadPlugin ( "DGDecode.dll")
LoadPlugin ( "Decomb521VFR2Pass-P3.dll")
LoadPlugin ( "ColorMatrix.dll")
Nightshiver
3rd February 2010, 21:19
I would not use AMVDeint. Never heard of it, and your source doesn't need it anyway. While DGIndex says that it's interlaced, it's also PAL, and stepping through it frame by frame reveals no interlacing at all. It is progressive.
MPEG2Source("D:\test1.d2v", cpu=0)
source = last
vectors = source.MVAnalyseMulti(refframes=3, pel=2, overlap=4, sharp=1, idx=1)
source.MVDegrainMulti(vectors,thSAD=800,idx=1)
LimitedSharpenFaster(ss_x=1.8, ss_y=1.8, smode=3, strength=180, overshoot=1, undershoot=1)
Tweak(cont=1.1,sat=1.1,bright=0, hue=0)
crop( 12, 0, -8, 0)
Spline36Resize(720,544)
ExtraEye
3rd February 2010, 21:45
"MVAnalyseMulti" - gives me error
Nightshiver
3rd February 2010, 22:12
That's because you're using the new mvtools. You need the version by josey_wells: http://www.mediafire.com/?nndnztohoze
ExtraEye
7th February 2010, 22:30
That's because you're using the new mvtools. You need the version by josey_wells: http://www.mediafire.com/?nndnztohoze
thank you. It works now. I'm encoding now (still encoding since Thursday).
thetoof
9th February 2010, 04:21
I had this uber slow speed issue too before - try setting a higher setmemorymax and you should notice a change.
TCmullet
27th December 2016, 16:40
the FFTW3.dll should be in the FFT3dfilter files.
http://avisynth.org.ru/fft3dfilter/fft3dfilter.html
Not only is the .ru site down now, but wherever I found the zip file for FFT3DFilter, it did not contain the FFTW3.dll file.
(BUT, the html doc file within it DID highlight the need to have FFTW3.dll in the system path.)
Wilbert
27th December 2016, 22:02
see http://avisynth.nl/users/fizick/fft3dfilter/fft3dfilter.html
StainlessS
28th December 2016, 06:48
The FFTW3 library was updated to v3.3.5 about 30 July 2016:- http://www.fftw.org/
EDIT: libfftw3f-3.dll from the ZIP downloaded from above link, must be renamed for FFT3DFilter to FFTW3.dll,
and also DftTest plugin requires same dll with original name libfftw3f-3.dll also in System32/SysWOW64.
LemMotlow
10th January 2017, 05:48
[QUOTE=ExtraEye;1370315]I threw in a couple of plugins i found and this is what i came up with:
MPEG2Source("project file.d2v", cpu=4)
AMVDeint(mode=4)
Crop(10,0,-10,-4)
Tweak(sat=1.1,cont=1.2)
DeGrainMedian
temporalcleaner
Lanczos4resize(720,560)
zWarpSharp(depth=8)
LSFmod(strength=120)WTF? That movie isn't interlaced. It's telecine.
vBulletin® v3.8.11, Copyright ©2000-2026, vBulletin Solutions Inc.