
From DVD slideshow GUI/Posteffects folder open 'Template_Freeframe.avs' in Notepad or great IDE for Avisynth: AvsP.
|
Code:
|
|
#colorbars()
LoadPlugin("freeframe.dll") converttorgb24() freeframe("PeteHalfTone.dll",false,0.236,0,0.402,0.276)#halftone converttoYV12() |
This is the avisynth script which adds a selectable Free Frame effect to DVD slideshow GUI called 'Template_Freeframe.avs'.
Change the code to this:
|
Code:
|
|
colorbars()
LoadPlugin("freeframe.dll") converttorgb24() freeframe("PeteHalfTone.dll",true) converttoYV12() |
And save it in the Posteffects folder with the .avs extension.
Now open Mplayerc.exe(Media player classic) from the DVD slideshow GUI folder and drag and drop your new .avs file in Media player classic. It should now open a colorbar manipulated by by the free frame plugin. And also (and very important) open an interface to play around with the values of the plugin.
In the bottom of that interface there is the avisynth command which will produce the current effect. ex.
|
Code:
|
|
Freeframe("PeteHalfTone.dll",false,0.52,0.386,0.504,0.268)
|
Copy/paste this into the first script and remove this line:
|
Code:
|
|
freeframe("PeteHalfTone.dll",false,0.236,0,0.402,0.276)#halftone
|