View Full Version : Is AutoGK portable/runnable from USB Stick?
mike23
5th April 2009, 08:40
I would like to install AutoGK on an USB stick and run it from there on multiple computers.
is this possible? Is AutoGK portable?
Or are there any important Registry values written or DLL Registerings done during installation?
BigDid
5th April 2009, 19:42
Hi,
3rd party installers
- from den78
http://forum.doom9.org/showthread.php?p=1245079#post1245079
- another one also available to search in AGK main thread.
Did
den78
7th April 2009, 00:35
@BigDid
about those filters you asked... u can place them in system32 dir & they will work with the portable ver....just like the ordinary ver. it's that easy :)
example:
loadplugin("DeGrainMedian.dll")
BigDid
7th April 2009, 19:07
Hi den,
Not working.
loadplugin("DeGrainMedian.dll").degrainmedian(mode=5) not working
loadplugin("F:\WINDOWS\system32\DeGrainMedian.dll").degrainmedian(mode=5) not working either..
I know how it works with the regular AGK, it uses filters either from the filter subdir of AGK or the plugins subdir from avisynth. I know how to, within AGKPal, substitute one filter for another and chain filters with "." at the end of the movie.avs but that's all.
Thanks for trying anyhow.
Did
What I need is an
den78
7th April 2009, 19:52
well, i'm not editing through agkpal... but when it gets to start the first pass i just pause it (touch the agkpal window) & i open "movie.avs" to edit it with notepad & then proceed with encoding
it works perfect.
BigDid
9th April 2009, 19:06
Hi,
It works for internal commands/filters and for external filters already called by AGK like removegrain().
To make it work for other external filters you have to:
1/copy the wanted dll in regular AGK filters subdir path
2/ make a copy/paste to load the command at the beginning of the script like
LoadPlugin("F:\PROGRA~1\AutoGK\filters\degrainmedian.dll")
or from the usual path like:
LoadPlugin("F:\PROGRA~1\Avisynth 2.5\plugins\degrainmedian.dll")
3/ write your command at the end of the script like
degrainmedian(mode=5)
I suppose this is what you wanted to point out, I needed just more time and different phrasing to understand :D
On the contrary regular AGK with agkpal can use external filters either from AGK subdir filters or from Avisynth subdir plugins without the need to load the plugins which is less hassle.
I believe it is the portable makings that change the subdir paths and/or make them relative...
Did
vBulletin® v3.8.4, Copyright ©2000-2010, Jelsoft Enterprises Ltd.