Welcome to Doom9's Forum, THE in-place to be for everyone interested in DVD conversion.

Before you start posting please read the forum rules. By posting to this forum you agree to abide by the rules.

 

Go Back   Doom9's Forum > Capturing and Editing Video > Avisynth Usage

Reply
 
Thread Tools Search this Thread Display Modes
Old 8th August 2011, 08:56   #281  |  Link
videoFred
Registered User
 
videoFred's Avatar
 
Join Date: Dec 2004
Location: Terneuzen, Zeeland, the Netherlands, Europe, Earth, Milky Way,Universe
Posts: 689
Quote:
Originally Posted by Fizick View Post
Well, i am totally out of avisynth world now.
I'm sorry to hear this... why?

Quote:
So, source Depan code is released today. But it was my first plugin, and probably the worst code ever written
Well, it's the best stabilizer for Avisynth and I got it perfect working now! After many tests, I have found that correct levels for the base clip are very important. So I'm feeding DePanEstimate with a special tweaked clip. I'm using colorUYV(autogain=true) for this. ColorYUV(autogain=true) is often wrong, but it works very good for DePanEstimate().

The trust parameter is very important too. It sets the scene change detection.

I have tested this on many different clips and the result is almost always 100%, with trust=1.5.

I will upload my new stabilizing script here today.

Fred.
__________________
About 8mm film:
http://www.super-8.be
Film Transfer Tutorial and example clips:
https://www.youtube.com/watch?v=W4QBsWXKuV8
More Example clips:
http://www.vimeo.com/user678523/videos/sort:newest
videoFred is offline   Reply With Quote
Old 9th August 2011, 23:38   #282  |  Link
fluor
Registered User
 
Join Date: Jan 2002
Location: Norway
Posts: 41
I just discovered this fantastic plugin and it does wonders for my digital camera movies! by just cropping 20 pixels around I get a much more stable picture on many of my movies!

I use the following for some of my canon camera movies
Code:
loadplugin("C:\Util\canon2mkv\ffms2.dll")
FFVideoSource("c:\full-path\MVI_9766.avi") 
loadplugin("C:\Util\canon2mkv\hqdn3d.dll")
loadplugin("C:\Util\canon2mkv\DePan.dll")
loadplugin("C:\Util\canon2mkv\DePanEstimate.dll")
i = ConvertToYV12()
mdata = DePanEstimate(i)
DePanStabilize(i, data=mdata,method=0,dxmax=20,dymax=20,rotmax=0)
crop(20,20,-20,-20)
hqdn3d()
!!
__________________
-- fluor
fluor is offline   Reply With Quote
Old 30th October 2011, 18:18   #283  |  Link
SSH4
Registered User
 
Join Date: Nov 2006
Posts: 90
Hmm, i don't undestand why, but blur in DePanStabilize 1.101 not work for me.
Made it any size from 10 to 150 and don't see any difference

Code:
vectors = MSuper().MAnalyse(isb = false,blksize=8, overlap=4,search=5)
globalmotion = MDepan(vectors, pixaspect=0.911, thSCD1=500)
DepanStabilize(data=globalmotion, cutoff=0.5, mirror=15,rotmax=5,prev=0,next=0,blur=50, pixaspect=0.911,subpixel=2,method=1)
SSH4 is offline   Reply With Quote
Old 10th December 2011, 18:26   #284  |  Link
Fizick
AviSynth plugger
 
Fizick's Avatar
 
Join Date: Nov 2003
Location: Russia
Posts: 2,183
SSH4,
sorry. Blur is not implemented for rotation in current version 1.10.1.
Try MDepan (..., rot=false)

Also I discovered, that blur was accidentally not implemented at left side for subpixel=1.
__________________
My Avisynth plugins are now at http://avisynth.org.ru and mirror at http://avisynth.nl/users/fizick
I usually do not provide a technical support in private messages.
Fizick is offline   Reply With Quote
Old 23rd January 2023, 03:41   #285  |  Link
Hat3L0v3
Registered User
 
Hat3L0v3's Avatar
 
Join Date: Dec 2022
Posts: 44
Can somebody help me to figure out why depan filter crashing my Avs(AvsPmod)?
I want to use DePanStabilize from mvtools pack but it crashes.
system and others:
win10 x64
avs+ 3.7.3 r3825 x86-64
AvsPmod_v2.7.3.2_.Windows_x86-64
mvtools-2.7.45 (.dll`s x64)
vcredist last time installed from here (v0.64.0) (can't remember what versions I had before)

(libfftw3f-3.dll and libfftw3l-3.dll) from FFTW - 3.3.10
x64.dll into System32 folder (x32.dll on SysWoW64)

I remember before updating avs+ from 3.7.2 to r3825 I tried different stabilizers and depan was causing "access violation" error (same as TemporalDegrain2 with postFFT=2 option). Now they both just crashing without errors.
Hat3L0v3 is offline   Reply With Quote
Old 23rd January 2023, 03:56   #286  |  Link
StainlessS
HeartlessS Usurer
 
StainlessS's Avatar
 
Join Date: Dec 2009
Location: Over the rainbow
Posts: 10,980
libfftw3f-3.dll, but not libfftw3l,-3.dll
also can copy renamed libfftw3f-3.dll to system32/fftw3.dll
Some filters like one name, some the other, and some will accept either.

Failing that, post script.
__________________
I sometimes post sober.
StainlessS@MediaFire ::: AND/OR ::: StainlessS@SendSpace

"Some infinities are bigger than other infinities", but how many of them are infinitely bigger ???

Last edited by StainlessS; 23rd January 2023 at 03:59.
StainlessS is offline   Reply With Quote
Old 23rd January 2023, 04:01   #287  |  Link
kedautinh12
Registered User
 
Join Date: Jan 2018
Posts: 2,153
Quote:
Originally Posted by StainlessS View Post
libfftw3f-3.dll, but not libfftw3l,-3.dll
also can copy renamed libfftw3f-3.dll to system32/fftw3.dll
Some filters like one name, some the other, and some will accept either.

Failing that, post script.
Change name x64 libfftw3f-3.dll to fftw3.dll and copy to system32. Don't need rename libfftw3f-3.dll already in system32. I had both libfftw3f-3.dll and fftw3.dll in system32, don't have error with both already in system32
kedautinh12 is offline   Reply With Quote
Old 23rd January 2023, 04:07   #288  |  Link
StainlessS
HeartlessS Usurer
 
StainlessS's Avatar
 
Join Date: Dec 2009
Location: Over the rainbow
Posts: 10,980
Well, result is same thing. [provided those in system32 are same version as new ones]
__________________
I sometimes post sober.
StainlessS@MediaFire ::: AND/OR ::: StainlessS@SendSpace

"Some infinities are bigger than other infinities", but how many of them are infinitely bigger ???
StainlessS is offline   Reply With Quote
Old 23rd January 2023, 11:10   #289  |  Link
Hat3L0v3
Registered User
 
Hat3L0v3's Avatar
 
Join Date: Dec 2022
Posts: 44
Quote:
Originally Posted by StainlessS View Post
libfftw3f-3.dll, but not libfftw3l,-3.dll
also can copy renamed libfftw3f-3.dll to system32/fftw3.dll
Some filters like one name, some the other, and some will accept either.

Failing that, post script.
So I need just single libfftw3f-3.dll in my system32 folder if I using x64 version avs/avsp? I deleted all other .dll`s - still crashing.
Hat3L0v3 is offline   Reply With Quote
Old 23rd January 2023, 11:12   #290  |  Link
kedautinh12
Registered User
 
Join Date: Jan 2018
Posts: 2,153
Quote:
Originally Posted by Hat3L0v3 View Post
So I need just single libfftw3f-3.dll in my system32 folder if I using x64 version avs/avsp? I deleted all other .dll`s - still crashing.
You need both libfftw3f-3.dll and fftw3.dll in system32 too. And fftw3.dll same with libfftw3f-3.dll (change name libfftw3f-3.dll to fftw3.dll)
kedautinh12 is offline   Reply With Quote
Old 23rd January 2023, 11:32   #291  |  Link
kedautinh12
Registered User
 
Join Date: Jan 2018
Posts: 2,153
If still errors, you can check with dependencies, drag mvtools.dll, fft3dfilter.dll, neo-fft3d.dll to this app to check error
https://github.com/lucasg/Dependencies/releases
kedautinh12 is offline   Reply With Quote
Old 23rd January 2023, 12:10   #292  |  Link
Hat3L0v3
Registered User
 
Hat3L0v3's Avatar
 
Join Date: Dec 2022
Posts: 44
Quote:
Originally Posted by kedautinh12 View Post
If still errors, you can check with dependencies, drag mvtools.dll, fft3dfilter.dll, neo-fft3d.dll to this app to check error
https://github.com/lucasg/Dependencies/releases
after I drag it to app I don't really undestand where to look for errors. Like this one? the only red I found.
Hat3L0v3 is offline   Reply With Quote
Old 23rd January 2023, 12:28   #293  |  Link
kedautinh12
Registered User
 
Join Date: Jan 2018
Posts: 2,153
Quote:
Originally Posted by Hat3L0v3 View Post
after I drag it to app I don't really undestand where to look for errors. Like this one? the only red I found.
Yes, you missing this .dll. You need download this x64 ver .dll and copy to system32
kedautinh12 is offline   Reply With Quote
Old 23rd January 2023, 12:35   #294  |  Link
kedautinh12
Registered User
 
Join Date: Jan 2018
Posts: 2,153
Quote:
Originally Posted by Hat3L0v3 View Post
after I drag it to app I don't really undestand where to look for errors. Like this one? the only red I found.
My mistake. You need check depan.dll and depanestimate.dll too
kedautinh12 is offline   Reply With Quote
Old 23rd January 2023, 12:46   #295  |  Link
Hat3L0v3
Registered User
 
Hat3L0v3's Avatar
 
Join Date: Dec 2022
Posts: 44
Quote:
Originally Posted by kedautinh12 View Post
My mistake. You need check depan.dll and depanestimate.dll too
I have list of this .dll`s missings. Don't really know how it can helps and where to fix them (if it needed)
Hat3L0v3 is offline   Reply With Quote
Old 23rd January 2023, 12:57   #296  |  Link
kedautinh12
Registered User
 
Join Date: Jan 2018
Posts: 2,153
You can search .dll missing and download here
https://www.solvusoft.com/en/files/m...und-error/dll/
kedautinh12 is offline   Reply With Quote
Old 23rd January 2023, 13:14   #297  |  Link
Hat3L0v3
Registered User
 
Hat3L0v3's Avatar
 
Join Date: Dec 2022
Posts: 44
Quote:
Originally Posted by kedautinh12 View Post
You can search .dll missing and download here
https://www.solvusoft.com/en/files/m...und-error/dll/
this site not work properly.
I open other .dll that works for test it have same .dll missing but it works fine. so maybe not all of them I need to repair.
Hat3L0v3 is offline   Reply With Quote
Old 23rd January 2023, 13:45   #298  |  Link
kedautinh12
Registered User
 
Join Date: Jan 2018
Posts: 2,153
Ok, i use this fftw3.3.10 and didn't had error (you can copy all x64 .dll to system32)
https://drive.google.com/file/d/1PF9...w?usp=drivesdk

If error still exist, try search: add or remove program -> unistall all vc++ version and install abbodi1406's vc++ again
kedautinh12 is offline   Reply With Quote
Old 23rd January 2023, 15:56   #299  |  Link
Selur
Registered User
 
Selur's Avatar
 
Join Date: Oct 2001
Location: Germany
Posts: 7,259
Just as a side note:
Instead of copying fftw dlls into the system folder you could also load it inside the Avisynth script using LoadDLL.
Here's an example:
Code:
# LoadPlugin("I:\Hybrid\64bit\Avisynth\avisynthPlugins\LoadDll.dll") # only needed when auto-loading is disabled.
LoadDLL("I:\Hybrid\64bit\Avisynth\avisynthPlugins\fftw\libfftw3f-3.dll")
(Hybrid uses this for ages. Hybrid disables the auto-loading and loads everything explicitly for more control over what is used.)

Cu
Selur
__________________
Hybrid here in the forum, homepage
Selur is offline   Reply With Quote
Old 23rd January 2023, 20:35   #300  |  Link
StainlessS
HeartlessS Usurer
 
StainlessS's Avatar
 
Join Date: Dec 2009
Location: Over the rainbow
Posts: 10,980
Found this on TechNet
https://social.technet.microsoft.com...nServerPreview

Quote:
Question
Sign in to vote
0
Sign in to vote

Thank you for the pointer to the VC++ 2015-2019 v14.23.27820.0 runtime files that will start and run on Win 10 v1903. Obviously these have been compiled with different dependencies than the VC++ 2015-2019 v14.21.27702.2 runtime files that I have had since v1803 of Win 10.

Although, installing these 2015-2019 C++ runtimes has not solved the issue.

I have read elsewhere on this forum:

"You are not missing those DLLs.

Those DLLs are Windows's implementation detail and are subject to change at anytime. Basically Microsoft started moving around APIs starting from Windows 8. For example, APIs in Windows 8's api-ms-win-core-file-l1-2-0.dll got moved to api-ms-win-core-file-l1-2-1.dll in Windows 8.1. Old software still work because the dlls developer linked to are now just placeholders redirecting calls to the actual implementation. But nobody should link to the implementations directly, as that would be defeating the purpose of having such a redirection. Any software that report those dlls are missing are failing to accommodate the redirection (e.g. reporting a delay-loaded dependency as hard one)."

that v1903 has replaced the direct calls to all of those DLLs with a handful of stub DLLs that now must be called to be redirected to the corresponding function provided by the original DLLs.

In my opinion, it was very rude of Microsoft to make this change to v1903, with no workaround, as it ruins several years of programs that were created using VC++.

Including Microsoft's own VC++ runtime installation files which were obviously recompiled with new dependencies to now function correctly on v1903.

If anyone knows of a workaround other than regression to v1803 of Win 10, please reply.

Thank you in advance.
Looks like M$ ****'ed it up a bit.

Those error messages you have [missing dll's], might be bogus.

Near end of that technet thread, seems that something you downloaded, might not have been installed correctly (maybe the AIO runtimes updater),
due to M$ preventing it from running properly because it was downloaded from an 'unknown' computer. (ie internet).

Also [YOU MUST] see here:- https://forum.doom9.org/showthread.p...09#post1872609

EDIT: to do with this stuff [see above D9 link]:


EDIT: Added a Regedit fix for 'unknown' computer file blocking thing at above D9 link.
There is also a GpEdit.msc fix at above link (Windows Pro only).
Suggest [YOU MUST] get the NirSoft AlternateStreamsViewer mentioned at above link. and search for blocked files over your whole system
(I had hundreds of files blocked without knowing, when I first discovered problem).
__________________
I sometimes post sober.
StainlessS@MediaFire ::: AND/OR ::: StainlessS@SendSpace

"Some infinities are bigger than other infinities", but how many of them are infinitely bigger ???

Last edited by StainlessS; 23rd January 2023 at 21:08.
StainlessS is offline   Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 11:15.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.