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 31st October 2019, 12:39   #21  |  Link
StainlessS
HeartlessS Usurer
 
StainlessS's Avatar
 
Join Date: Dec 2009
Location: Over the rainbow
Posts: 10,980
You got it.
Above well spooky and in stereo too ..........................................
__________________
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; 31st October 2019 at 12:43.
StainlessS is offline   Reply With Quote
Old 31st October 2019, 14:36   #22  |  Link
StainlessS
HeartlessS Usurer
 
StainlessS's Avatar
 
Join Date: Dec 2009
Location: Over the rainbow
Posts: 10,980
I guess we also need MACHINE directories for BOTH standard AVS26+ and AVS+26+, currently only implemented for AVS26+
Code:
 Function AvsInit_AVS_DirName(int i)  { Return (i<0||i>2) ? "" : Select(i,"AVS25+","AVS26+","AVSx64") }
Maybe I add
Code:
 Function AvsInit_AVS_DirName(int i)  { Return (i<0||i>3) ? "" : Select(i,"AVS25+","AVS26+","AVS+26+","AVS+26x64+") }
AVS25+, means Avsiynth v2.58 and above, AVS26+, means Std Avisynth v2.60 and above.

Any complaints ?
If no complaints I'll mod as above tomorrow.

EDIT:
OR Maybe
Code:
 Function AvsInit_AVS_DirName(int i)  { Return (i<0||i>3) ? "" : Select(i,"AVS25+","AVS26Std+","AVS26+","AVS26x64+") }
Thoughts ???

EDIT: Do all flavours of AMD supporting eg SSE4.2, support MMX ? [if not then need add a bit of code to avoid eg MMX dll's]
__________________
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; 31st October 2019 at 15:37.
StainlessS is offline   Reply With Quote
Old 1st November 2019, 15:27   #23  |  Link
StainlessS
HeartlessS Usurer
 
StainlessS's Avatar
 
Join Date: Dec 2009
Location: Over the rainbow
Posts: 10,980
AvsInit.avsi, v1.07, new version, see 1st post.

Had some weird issues trying to upload this,
Total folder size 33KB, compressed as zip 60KB, Both SendSpace and Mediafire took a long time to analyse it [to the point I gave up and rebooted, reset connection],
Compressed as 7z, 9KB. Upload to Virustotal found no problems (but a few scanners said could not analyse for some reason ["Unable to process file type"]).
I guess the thing throwing a spanner in the works is the number of empy folders in MACHINE folder (246).
So, uploaded to both SendSpace and MediaFire as 7z rather than zip.

Uploaded to VirusTotal report:- https://www.virustotal.com/gui/file/...9cb4/detection

Mods,
Made AvsInit_DLoadConditional() directories both optional.
Changed Folder names, Added AVS26Std+ being Standard Avisynth v2.60/61, changed AVSx64 to AVS26x64+.
Rename AVS7+ to AVS7_0+, AVS80+ to AVS8_0+, AVS81+ to AVS8_1+, AVS10+ to AVS10_0+.
Should read
Rename WIN7+ to WIN7_0+, WIN80+ to WIN8_0+, WIN81+ to WIN8_1+, WIN10+ to WIN10_0+.


some changes here
Code:
    AvsInit_DLoadConditional(String "DLL_DIR",String "AVSI_DIR")         OS/Avisynth_Version/CPU_Extensions Specific DLL loader. DIR = Path
                                                to directory containing folders, dll and Script files.
                                                Both directories are optional, DLL_Dir defaults to "" ie dont scan, AVSI_DIR defaults to DLL_DIR.
                                                First Level Directories:- XP+, VISTA+, WIN7_0+, WIN8_0+, WIN8_1+, WIN10_0+. One of each in
                                                above DLL_DIR or AVSI_DIR directories.
                                                Second Level Directories:  AVS25+, Avs26Std+, AVS26+, AVS26x64+. One of each in above 1st levels
                                                directories. AVS26Std+ is standard Avisynth v2.60/2.61, AVS26+ is Avisynth+ v2.60.
                                                Third Level Directories: CPP+, MMX+, SSE+, SSE2+, SSE3+, SSE41+, SSE42+, AVX+, AVX2+.
                                                One of each in above 2nd levels directories.
                                                DLLs/Scripts should be in Third Level directories, ie CPU Extension Directories.
                                                NOTE, All alternative dll's should have exact same name, eg if xyz.dll loaded from AVX2
                                                directory, then similar named dlls' skipped in AVX, SSE42, etc.
                                                Only directories containing files are necessary, but easier to keep entire directory layout,
                                                than to add them back where required.
                                                Zip contains a template full directory layout in "MACHINE" folder (but without any
                                                dll's/scripts).
                                                Any Scripts containing GScript code should also be stripped of GScript Wrappers.
                                                ONLY put awkward dll's or scripts in MACHINE folder, so that you can use eg specific dll
                                                for XP, and another where Vista+ in use.
                                                Do NOT have similar named dll's in both Plugins folder AND MACHINE folders, they will
                                                always be replaced by those in MACHINe folder as we cannot tell if an already Plugins
                                                loaded dll is present. v1.07, Now prescans folder containing AvsInit.avsi script (ie Plugins)
                                                and does not load dll's or scripts with same names as those in that Plugins folder.
                                                The '+' after eg AVS25+, means Avisynth v2.58 and later versions of Avisynth.
                                                If CPU extensions are not explicitly mentioned in SysInfo SI_CPUExtensions string, then
                                                any dll's for that extension will now be skipped, eg if MMX not mentioned for an AMD
                                                processor, then no dll's will be loaded from MMX directories even if later/higher CPU extensions
                                                are available.
Testing
Code:
00000103    0.00000000  AvsInit:
00000104    0.00005254  AvsInit: Auto load plugins script ENTRY
00000105    0.00010036  AvsInit:
00000106    0.00374522  AvsInit:AvsInit_ShowInfo:
00000107    0.00379486  AvsInit:AvsInit_ShowInfo: AvsInit_Version     = 1.07
00000108    0.00384196  AvsInit:AvsInit_ShowInfo: RT_Stats Version    = 2.00Beta12
00000109    0.00389051  AvsInit:AvsInit_ShowInfo: SysInfo Version     = 0.114000
00000110    0.00393761  AvsInit:AvsInit_ShowInfo: VersionString       = AviSynth+ 3.4 (r2923, 3.4, i386)
00000111    0.00398761  AvsInit:AvsInit_ShowInfo: SetMemoryMax        = 1024
00000112    0.00403978  AvsInit:AvsInit_ShowInfo: GScript Available   = AVS+
00000113    0.00408652  AvsInit:AvsInit_ShowInfo: OS Bitness          = 64
00000114    0.00413870  AvsInit:AvsInit_ShowInfo: Avisynth Bitness    = 32
00000115    0.00419087  AvsInit:AvsInit_ShowInfo: WorkingDir          = C:\VideoTools\AvisynthRepository\AVSPLUS_x86\plugins\
00000116    0.00423833  AvsInit:AvsInit_ShowInfo: ProcessName         = C:\Program Files (x86)\DAUM\PotPlayer\PotPlayerMini.exe
00000117    0.00428471  AvsInit:AvsInit_ShowInfo: ParentProcessName   = PSPad.exe
00000118    0.00433217  AvsInit:AvsInit_ShowInfo: OSVersionString     = Windows 7 (x64) Service Pack 1.0 (Build 7601)
00000119    0.00437927  AvsInit:AvsInit_ShowInfo: OSVersionNumber     = 6.100000
00000120    0.00442601  AvsInit:AvsInit_ShowInfo: CPUName             = Intel(R) Core(TM)2 Quad CPU Q9550 @ 2.83GHz / Yorkfield (Core 2 Quad) 6M
00000121    0.00447384  AvsInit:AvsInit_ShowInfo: Cores               = 04:04 (Phy:Log)
00000122    0.00452565  AvsInit:AvsInit_ShowInfo: CPU Extensions      = MMX, SSE, SSE2, SSE3, SSSE3, SSE4.1
00000123    0.00457238  AvsInit:AvsInit_ShowInfo: Total Memory        = 12221MB
00000124    0.00462456  AvsInit:AvsInit_ShowInfo: Avail Memory        = 9540MB'
00000125    0.00467673  AvsInit:AvsInit_ShowInfo: Screen Res          = 1920x1080
00000126    0.00472854  AvsInit:AvsInit_ShowInfo: Screen BitsPerPixel = 32
00000127    0.00477528  AvsInit:AvsInit_ShowInfo: Time                = Friday 01 November 2019 13:36:54[GMT Standard Time]
00000128    0.00482238  AvsInit:AvsInit_ShowInfo: User TEMP Dir       = C:\Users\BeatRoot\AppData\Local\Temp
00000129    0.00487455  AvsInit:AvsInit_ShowInfo: ComSpec             = C:\Windows\system32\cmd.exe
00000130    0.00492673  AvsInit:AvsInit_ShowInfo: Computer Name       = PLEX-P2
00000131    0.00497346  AvsInit:AvsInit_ShowInfo: User Name           = BeatRoot
00000132    0.00502020  AvsInit:AvsInit_ShowInfo:
00000133    0.01236102  AvsInit:AvsInit_DImport:     Importing ... C:\VideoTools\AvisynthRepository\GIMPORT\AutoContrast.avsi
00000134    0.01355158  AvsInit:AvsInit_DImport:     Importing ... C:\VideoTools\AvisynthRepository\GIMPORT\AWB.avsi
00000135    0.01780005  AvsInit:AvsInit_DImport:     Importing ... C:\VideoTools\AvisynthRepository\GIMPORT\colors_rgb.avsi
00000136    0.01883953  AvsInit:AvsInit_DImport:     Importing ... C:\VideoTools\AvisynthRepository\GIMPORT\dither.avsi
00000137    0.03992684  AvsInit:AvsInit_DImport:     Importing ... C:\VideoTools\AvisynthRepository\GIMPORT\Favc.avsi
00000138    0.04283621  AvsInit:AvsInit_DImport:     Importing ... C:\VideoTools\AvisynthRepository\GIMPORT\MCDegrain.avsi
00000139    0.04393909  AvsInit:AvsInit_DImport:     Importing ... C:\VideoTools\AvisynthRepository\GIMPORT\MIFO_Library.avsi
00000140    0.05027630  AvsInit:AvsInit_DImport:     Importing ... C:\VideoTools\AvisynthRepository\GIMPORT\Misc.avsi
00000141    0.05353023  AvsInit:AvsInit_DImport:     Importing ... C:\VideoTools\AvisynthRepository\GIMPORT\RoboSplice.avsi
00000142    0.05739284  AvsInit:AvsInit_DImport:         IMPORTED 9 scripts from 'C:\VideoTools\AvisynthRepository\GIMPORT'
00000143    0.05882217  AvsInit:AvsInit_DImport:         IMPORTED 0 scripts from 'C:\VideoTools\AvisynthRepository\AVSPLUS_x86\plugins\GIMPORT'
00000144    0.07538818  AvsInit_DLoadConditional: STARTING DLL SCAN on C:\VideoTools\AvisynthRepository\MACHINE
00000145    0.07756532  AvsInit_DLoadConditional: !!! Skipping File WIN7_0+\AVS26Std+\SSE41+\GRunT.dll, already loaded from PLUGINS
00000146    0.07781097  AvsInit_DLoadConditional: !!! Skipping File WIN7_0+\AVS26Std+\SSE41+\RT_Stats.dll, already loaded from PLUGINS
00000147    0.07805698  AvsInit_DLoadConditional: !!! Skipping File WIN7_0+\AVS26Std+\SSE41+\SysInfo32.dll, already loaded from PLUGINS
00000148    0.08128627  AvsInit_DLoadConditional: masktools2.dll                   LoadPlugin OK from VISTA+\AVS26+\SSE2+
00000149    0.08291341  AvsInit_DLoadConditional: !!! Skipping File VISTA+\AVS26Std+\SSE2+\masktools2.dll, already loaded from VISTA+\AVS26+\SSE2+
00000150    0.08579126  AvsInit_DLoadConditional: ffms2.dll                        LoadPlugin OK from XP+\AVS26+\SSE2+
00000151    0.08684124  AvsInit_DLoadConditional: Average.dll                      LoadPlugin OK from XP+\AVS26+\CPP+
00000152    0.08709305  AvsInit_DLoadConditional: avss.dll                         LoadPlugin OK from XP+\AVS26+\CPP+
00000153    0.08734051  AvsInit_DLoadConditional: avstp.dll                        LoadPlugin OK from XP+\AVS26+\CPP+
00000154    0.08758797  AvsInit_DLoadConditional: DePan.dll                        LoadPlugin OK from XP+\AVS26+\CPP+
00000155    0.08783833  AvsInit_DLoadConditional: DePanEstimate.dll                LoadPlugin OK from XP+\AVS26+\CPP+
00000156    0.08808760  AvsInit_DLoadConditional: dfttest.dll                      LoadPlugin OK from XP+\AVS26+\CPP+
00000157    0.08834484  AvsInit_DLoadConditional: !!! Skipping File XP+\AVS26+\CPP+\ffms2.dll, already loaded from XP+\AVS26+\SSE2+
00000158    0.08859012  AvsInit_DLoadConditional: FFTQuiver.dll                    LoadPlugin OK from XP+\AVS26+\CPP+
00000159    0.08884157  AvsInit_DLoadConditional: fturn.dll                        LoadPlugin OK from XP+\AVS26+\CPP+
00000160    0.08910135  AvsInit_DLoadConditional: !!! Skipping File XP+\AVS26+\CPP+\masktools2.dll, already loaded from VISTA+\AVS26+\SSE2+
00000161    0.08936366  AvsInit_DLoadConditional: mvtools2.dll                     LoadPlugin OK from XP+\AVS26+\CPP+
00000162    0.08968214  AvsInit_DLoadConditional: RgTools.dll                      LoadPlugin OK from XP+\AVS26+\CPP+
00000163    0.08993503  AvsInit_DLoadConditional: SoundOut.dll                     LoadPlugin OK from XP+\AVS26+\CPP+
00000164    0.09020423  AvsInit_DLoadConditional: waveform.dll                     LoadPlugin OK from XP+\AVS26+\CPP+
00000165    0.09046219  AvsInit_DLoadConditional: yadifmod2.dll                    LoadPlugin OK from XP+\AVS26+\CPP+
00000166    0.09160674  AvsInit_DLoadConditional: !!! Skipping File XP+\AVS26Std+\SSE2+\ffms2.dll, already loaded from XP+\AVS26+\SSE2+
00000167    0.09263498  AvsInit_DLoadConditional: !!! Skipping File XP+\AVS26Std+\CPP+\Average.dll, already loaded from XP+\AVS26+\CPP+
00000168    0.09288208  AvsInit_DLoadConditional: !!! Skipping File XP+\AVS26Std+\CPP+\avss.dll, already loaded from XP+\AVS26+\CPP+
00000169    0.09312845  AvsInit_DLoadConditional: !!! Skipping File XP+\AVS26Std+\CPP+\avstp.dll, already loaded from XP+\AVS26+\CPP+
00000170    0.09337483  AvsInit_DLoadConditional: !!! Skipping File XP+\AVS26Std+\CPP+\DePan.dll, already loaded from XP+\AVS26+\CPP+
00000171    0.09362337  AvsInit_DLoadConditional: !!! Skipping File XP+\AVS26Std+\CPP+\DePanEstimate.dll, already loaded from XP+\AVS26+\CPP+
00000172    0.09387119  AvsInit_DLoadConditional: !!! Skipping File XP+\AVS26Std+\CPP+\dfttest.dll, already loaded from XP+\AVS26+\CPP+
00000173    0.09411757  AvsInit_DLoadConditional: !!! Skipping File XP+\AVS26Std+\CPP+\ffms2.dll, already loaded from XP+\AVS26+\SSE2+
00000174    0.09436648  AvsInit_DLoadConditional: !!! Skipping File XP+\AVS26Std+\CPP+\FFTQuiver.dll, already loaded from XP+\AVS26+\CPP+
00000175    0.09461611  AvsInit_DLoadConditional: !!! Skipping File XP+\AVS26Std+\CPP+\fturn.dll, already loaded from XP+\AVS26+\CPP+
00000176    0.09486393  AvsInit_DLoadConditional: !!! Skipping File XP+\AVS26Std+\CPP+\masktools2.dll, already loaded from VISTA+\AVS26+\SSE2+
00000177    0.09511393  AvsInit_DLoadConditional: !!! Skipping File XP+\AVS26Std+\CPP+\mvtools2.dll, already loaded from XP+\AVS26+\CPP+
00000178    0.09536863  AvsInit_DLoadConditional: !!! Skipping File XP+\AVS26Std+\CPP+\RgTools.dll, already loaded from XP+\AVS26+\CPP+
00000179    0.09562442  AvsInit_DLoadConditional: !!! Skipping File XP+\AVS26Std+\CPP+\SoundOut.dll, already loaded from XP+\AVS26+\CPP+
00000180    0.09587551  AvsInit_DLoadConditional: !!! Skipping File XP+\AVS26Std+\CPP+\waveform.dll, already loaded from XP+\AVS26+\CPP+
00000181    0.09612732  AvsInit_DLoadConditional: !!! Skipping File XP+\AVS26Std+\CPP+\yadifmod2.dll, already loaded from XP+\AVS26+\CPP+
00000182    0.09725374  AvsInit_DLoadConditional: !!! Skipping File XP+\AVS25+\SSE2+\avss.dll, already loaded from XP+\AVS26+\CPP+
00000183    0.09749975  AvsInit_DLoadConditional: !!! Skipping File XP+\AVS25+\SSE2+\avstp.dll, already loaded from XP+\AVS26+\CPP+
00000184    0.09774251  AvsInit_DLoadConditional: fft3dfilter.dll                  LoadPlugin OK from XP+\AVS25+\SSE2+
00000185    0.09799576  AvsInit_DLoadConditional: FluxSmooth.dll                   LoadPlugin OK from XP+\AVS25+\SSE2+
00000186    0.09825011  AvsInit_DLoadConditional: LSMASHSource.dll                 LoadPlugin OK from XP+\AVS25+\SSE2+
00000187    0.09850880  AvsInit_DLoadConditional: !!! Skipping File XP+\AVS25+\SSE2+\mvtools2.dll, already loaded from XP+\AVS26+\CPP+
00000188    0.09875263  AvsInit_DLoadConditional: RemoveDirtSSE2.dll               LoadPlugin OK from XP+\AVS25+\SSE2+
00000189    0.09901277  AvsInit_DLoadConditional: !!! Skipping File XP+\AVS25+\SSE2+\waveform.dll, already loaded from XP+\AVS26+\CPP+
00000190    0.09925660  AvsInit_DLoadConditional: yadifmod.dll                     LoadPlugin OK from XP+\AVS25+\SSE2+
00000191    0.10032072  AvsInit_DLoadConditional: STARTING SCRIPT SCAN on C:\VideoTools\AvisynthRepository\MACHINE
00000192    0.10326161  AvsInit_DLoadConditional: !!! Skipping File WIN7_0+\AVS26Std+\SSE41+\AvsInit.avsi, already loaded from PLUGINS
00000193    0.14266744  AvsInit_DLoadConditional: FFMS2.avsi                       Import OK from XP+\AVS26+\SSE2+
00000194    0.14325656  AvsInit_DLoadConditional: !!! Skipping File XP+\AVS26+\CPP+\FFMS2.avsi, already loaded from XP+\AVS26+\SSE2+
00000195    0.15374152  AvsInit_DLoadConditional: !!! Skipping File XP+\AVS26Std+\SSE2+\FFMS2.avsi, already loaded from XP+\AVS26+\SSE2+
00000196    0.16371237  AvsInit_DLoadConditional: !!! Skipping File XP+\AVS26Std+\CPP+\FFMS2.avsi, already loaded from XP+\AVS26+\SSE2+
00000197    0.17835705  AvsInit_DLoadConditional:   20 dll's   LOADED : 26 dll's   SKIPPED : 0 dll's   FAILED
00000198    0.19622666  AvsInit_DLoadConditional:   1 scripts LOADED : 4 Scripts SKIPPED : 0 scripts FAILED
EDIT: As we now check for explicit CPU extensions, I guess we should change this lot to remove appended '+', CPP+, MMX+, SSE+, SSE2+, SSE3+, SSE41+, SSE42+, AVX+, AVX2+.
__________________
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; 1st November 2019 at 21:25.
StainlessS is offline   Reply With Quote
Old 1st November 2019, 18:57   #24  |  Link
Groucho2004
 
Join Date: Mar 2006
Location: Barcelona
Posts: 5,034
Quote:
Originally Posted by StainlessS View Post
Rename AVS7+ to AVS7_0+, AVS80+ to AVS8_0+, AVS81+ to AVS8_1+, AVS10+ to AVS10_0+.
Slightly
__________________
Groucho's Avisynth Stuff
Groucho2004 is offline   Reply With Quote
Old 1st November 2019, 19:30   #25  |  Link
StainlessS
HeartlessS Usurer
 
StainlessS's Avatar
 
Join Date: Dec 2009
Location: Over the rainbow
Posts: 10,980
Quote:
Originally Posted by Groucho2004 View Post
Slightly
Not sure what you are gettin' at there.
__________________
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 1st November 2019, 19:33   #26  |  Link
Groucho2004
 
Join Date: Mar 2006
Location: Barcelona
Posts: 5,034
Quote:
Originally Posted by StainlessS View Post
Not sure what you are gettin' at there.
What does for example AVS81+ mean? Should I RTFM?
__________________
Groucho's Avisynth Stuff
Groucho2004 is offline   Reply With Quote
Old 1st November 2019, 19:39   #27  |  Link
StainlessS
HeartlessS Usurer
 
StainlessS's Avatar
 
Join Date: Dec 2009
Location: Over the rainbow
Posts: 10,980
Oh crap yeh!.
I could not see it despite you pointing it out.
I meant this lot of course:- "XP+","VISTA+","WIN7_0+","WIN8_0+","WIN8_1+","WIN10_0+"
WIN, not AVS.
[You know how easily I'm confused ]

I'll update later and remove + from CPU extension folders.
__________________
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 1st November 2019, 19:54   #28  |  Link
StainlessS
HeartlessS Usurer
 
StainlessS's Avatar
 
Join Date: Dec 2009
Location: Over the rainbow
Posts: 10,980
Quote:
Originally Posted by StainlessS View Post
Oh crap yeh!.
I'll update later and remove + from CPU extension folders.
What, I dont have to update, only that post was wrong, not the script,
Again, You know how easily I'm confused
__________________
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 2nd November 2019, 11:45   #29  |  Link
StainlessS
HeartlessS Usurer
 
StainlessS's Avatar
 
Join Date: Dec 2009
Location: Over the rainbow
Posts: 10,980
AvsInit.avsi v1.08, new version, see 1st post.

Posts with script #1, #13, #14, and #15 updated.

Changed MACHINE directories CPP+ to CPP and MMX+ to MMX etc, no other significant changes.

I can probably leave this now, seems to be working well.
__________________
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 2nd November 2019, 13:49   #30  |  Link
Groucho2004
 
Join Date: Mar 2006
Location: Barcelona
Posts: 5,034
Could you put a space between "SysInfo v0.114+" and "[Mandatory]" in the first post?

Yes, I have a tendency to anal retentiveness when it comes to such things.
__________________
Groucho's Avisynth Stuff
Groucho2004 is offline   Reply With Quote
Old 2nd November 2019, 14:07   #31  |  Link
StainlessS
HeartlessS Usurer
 
StainlessS's Avatar
 
Join Date: Dec 2009
Location: Over the rainbow
Posts: 10,980
You would think by now that I would have learnt to expect 'such things', done
__________________
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 2nd November 2019, 14:28   #32  |  Link
Groucho2004
 
Join Date: Mar 2006
Location: Barcelona
Posts: 5,034
Quote:
Originally Posted by StainlessS View Post
You would think by now that I would have learnt to expect 'such things', done
My rectum thanks you.
__________________
Groucho's Avisynth Stuff
Groucho2004 is offline   Reply With Quote
Old 2nd November 2019, 15:53   #33  |  Link
johnmeyer
Registered User
 
Join Date: Feb 2002
Location: California
Posts: 2,695
Quote:
Originally Posted by Groucho2004 View Post
My rectum thanks you.
Well, I'm glad for that. Can't imagine what it would be like if it didn't thank him.
johnmeyer is offline   Reply With Quote
Old 2nd November 2019, 16:36   #34  |  Link
StainlessS
HeartlessS Usurer
 
StainlessS's Avatar
 
Join Date: Dec 2009
Location: Over the rainbow
Posts: 10,980
Quote:
Originally Posted by Groucho2004 View Post
Yes, I have a tendency to anal retentiveness when it comes to such things.
Yep that Grouchy one, he's a bit 'full of himself'.
__________________
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 28th January 2020, 00:26   #35  |  Link
StainlessS
HeartlessS Usurer
 
StainlessS's Avatar
 
Join Date: Dec 2009
Location: Over the rainbow
Posts: 10,980
Update, AvsInit.avsi v1.09.

Fixed bug, did not delete tempfiles in system TEMP directory.

Changed names of MACHINE directories [pre-pended Ordinal numbers, removed +'s], added a couple of directories.
Code:
Second Level Directories:  0_AVS25x86, 1_Avs26Stdx86, 2_AVS26x86, 3_Avs25x64, 4_Avs26Stdx64, 5_AVS26x64.
Example file in MACHINE.7z, _MACHINE_Inventory.txt
Code:
Example MACHINE directory contents, I've just used CPP directories for everything. [I simply dont know if all are SSE plugs].

Below should be in relevant folders WITHOUT descriptions, ie basename [the part before the 1st underscore] + "dll" ONLY.
No dll names should have hyphens ['-'], some versions of Masktools were issued with hyphens in name. [Causes probs for Avs and eg AvsPMod].

0_XP\0_AVS25x86\0_CPP\
    ffms2_a25x86(XP)_r460.dll
    LSMASHSource_a25(XP)_r784.dll
    masktools2_a25(XP)_2.0.48.dll
    mvtools2_a25(XP)_2.6.0.5.dll
    RemoveDirt_a25x86(XP)_SSE2.dll
    DGDecode_a25x86.dll

0_XP\1_AVS26Stdx86\0_CPP\
    ffms2_a26x86(XP)_2.23_clang.dll
    masktools2_a26Std(XP)_2.0.48.dll
    mvtools2_a26Std(XP)_2.5.11.22.dll
    RemoveDirt_a26x86(XP)_0-92.dll

0_XP\2_AVS26x86\0_CPP\
    ffms2_C_x86_r1315_119_avs_vsp_LastXP.dll
    masktools2_x86(XP)_2.2.18.dll
    mvtools2_x86(XP)_2.7.41.dll


0_XP\3_AVS25x64\0_CPP\
    ffms2_C_x64_r1315_119_avs_vsp_LastXP.dll
    LSMASHSource_a25x64(XP)_r728.dll
    masktools2_a25x64(XP)_2.0.48.dll
    DGDecode_a25x64.dll

0_XP\4_AVS26Stdx64\0_CPP\
    ffms2_a26x64(XP)_2.23_clang.dll
    masktools2_a26Stdx64(XP)_2.0.48.dll
    RemoveDirt_a26x64(XP)_0-92.dll

0_XP\5_AVS26x64\0_CPP\
    masktools2_x64(XP)_2.2.18.dll
    mvtools2_x64(XP)_2.7.41.dll




2_WIN_7_0\2_AVS26x86\0_CPP\
    FFMS2_a26x86_2.23.1_MSVC_FFMPEG_4.2.2(l33tmeatwad).dll
    LSMASHSource_x86_20200118(HolyWu).dll
    masktools2_x86(NOT_XP)_2.2.18.dll
    mvtools2_x86(NOT_XP)_2.7.41.dll
    RemoveDirt_a26x86(NOT_XP)_0-92_Clang.dll

2_WIN_7_0\5_AVS26x64\0_CPP\
    FFMS2_a26x64_2.23.1_MSVC_FFMPEG_4.2.2(l33tmeatwad).dll
    LSMASHSource_x64_20200118(HolyWu).dll
    masktools2_x64(NOT_XP)_2.2.18.dll
    mvtools2_x64(NOT_XP)_2.7.41.dll.dll
    RemoveDirt_a26x64(NOT_XP)_0_92_Clang.dll
Output for current version, and script using ffms2, mvtools and masktools, Win7x86, avs+, using Gscript
Code:
00000485    0.00000000  [1612] AvsInit:
00000486    0.00005036  [1612] AvsInit: Auto load plugins script ENTRY
00000487    0.00010109  [1612] AvsInit:
00000488    0.00363110  [1612] AvsInit:AvsInit_ShowInfo:
00000489    0.00368254  [1612] AvsInit:AvsInit_ShowInfo: AvsInit_Version     = 1.09
00000490    0.00373254  [1612] AvsInit:AvsInit_ShowInfo: RT_Stats Version    = 2.00Beta12
00000491    0.00378327  [1612] AvsInit:AvsInit_ShowInfo: SysInfo Version     = 0.114000
00000492    0.00383254  [1612] AvsInit:AvsInit_ShowInfo: VersionString       = AviSynth+ 3.4 (r2923, 3.4, i386)
00000493    0.00388145  [1612] AvsInit:AvsInit_ShowInfo: SetMemoryMax        = 1024
00000494    0.00393145  [1612] AvsInit:AvsInit_ShowInfo: GScript Available   = YES
00000495    0.00398000  [1612] AvsInit:AvsInit_ShowInfo: OS Bitness          = 64
00000496    0.00402855  [1612] AvsInit:AvsInit_ShowInfo: Avisynth Bitness    = 32
00000497    0.00407710  [1612] AvsInit:AvsInit_ShowInfo: WorkingDir          = C:\VideoTools\AvisynthRepository\AVSPLUS_x86\plugins\
00000498    0.00412746  [1612] AvsInit:AvsInit_ShowInfo: ProcessName         = C:\NON-INSTALL\VDUB\VDUB2\VirtualDub.exe
00000499    0.00417601  [1612] AvsInit:AvsInit_ShowInfo: ParentProcessName   = explorer.exe
00000500    0.00422456  [1612] AvsInit:AvsInit_ShowInfo: OSVersionString     = Windows 7 (x64) Service Pack 1.0 (Build 7601)
00000501    0.00427348  [1612] AvsInit:AvsInit_ShowInfo: OSVersionNumber     = 6.100000
00000502    0.00432529  [1612] AvsInit:AvsInit_ShowInfo: CPUName             = Intel(R) Core(TM)2 Quad CPU Q9550 @ 2.83GHz / Yorkfield (Core 2 Quad) 6M
00000503    0.00437529  [1612] AvsInit:AvsInit_ShowInfo: Cores               = 04:04 (Phy:Log)
00000504    0.00442384  [1612] AvsInit:AvsInit_ShowInfo: CPU Extensions      = MMX, SSE, SSE2, SSE3, SSSE3, SSE4.1
00000505    0.00447239  [1612] AvsInit:AvsInit_ShowInfo: Total Memory        = 12221MB
00000506    0.00452130  [1612] AvsInit:AvsInit_ShowInfo: Avail Memory        = 9788MB'
00000507    0.00457492  [1612] AvsInit:AvsInit_ShowInfo: Screen Res          = 1920x1080
00000508    0.00461840  [1612] AvsInit:AvsInit_ShowInfo: Screen BitsPerPixel = 32
00000509    0.00466731  [1612] AvsInit:AvsInit_ShowInfo: Time                = Tuesday 28 January 2020 00:47:59[GMT Standard Time]
00000510    0.00471514  [1612] AvsInit:AvsInit_ShowInfo: User TEMP Dir       = C:\Users\LiquoriceRoot\AppData\Local\Temp
00000511    0.00476840  [1612] AvsInit:AvsInit_ShowInfo: ComSpec             = C:\Windows\system32\cmd.exe
00000512    0.00481803  [1612] AvsInit:AvsInit_ShowInfo: Computer Name       = PLEX-P2
00000513    0.00486658  [1612] AvsInit:AvsInit_ShowInfo: User Name           = LiquoriceRoot
00000514    0.00491513  [1612] AvsInit:AvsInit_ShowInfo:
00000515    0.01476206  [1612] AvsInit:AvsInit_DImport:     GImporting ... C:\VideoTools\AvisynthRepository\GIMPORT\AutoContrast.avsi
00000516    0.01583922  [1612] AvsInit:AvsInit_DImport:     GImporting ... C:\VideoTools\AvisynthRepository\GIMPORT\colors_rgb.avsi
00000517    0.01689463  [1612] AvsInit:AvsInit_DImport:     GImporting ... C:\VideoTools\AvisynthRepository\GIMPORT\FFMS2.avsi
00000518    0.01896851  [1612] AvsInit:AvsInit_DImport:     GImporting ... C:\VideoTools\AvisynthRepository\GIMPORT\JohnFPS.avsi
00000519    0.01969603  [1612] AvsInit:AvsInit_DImport:     GImporting ... C:\VideoTools\AvisynthRepository\GIMPORT\MCDegrain.avsi
00000520    0.02077283  [1612] AvsInit:AvsInit_DImport:     GImporting ... C:\VideoTools\AvisynthRepository\GIMPORT\Misc.avsi
00000521    0.02388183  [1612] AvsInit:AvsInit_DImport:     GImporting ... C:\VideoTools\AvisynthRepository\GIMPORT\QTGMC.3.363s.avsi
00000522    0.03582112  [1612] AvsInit:AvsInit_DImport:     GImporting ... C:\VideoTools\AvisynthRepository\GIMPORT\RoboSplice.avsi
00000523    0.04119566  [1612] AvsInit:AvsInit_DImport:         IMPORTED 8 scripts from 'C:\VideoTools\AvisynthRepository\GIMPORT'
00000524    0.04581152  [1612] AvsInit:AvsInit_DImport:         IMPORTED 0 scripts from 'C:\VideoTools\AvisynthRepository\AVSPLUS_x86\plugins\GIMPORT'
00000525    0.06617711  [1612] AvsInit_DLoadConditional: STARTING DLL SCAN on C:\VideoTools\AvisynthRepository\MACHINE
00000526    0.06746042  [1612] AvsInit_DLoadConditional: FFMS2.dll                        LoadPlugin OK from 2_WIN7_0\2_AVS26x86\0_CPP
00000527    0.06772491  [1612] AvsInit_DLoadConditional: LSMASHSource.dll                 LoadPlugin OK from 2_WIN7_0\2_AVS26x86\0_CPP
00000528    0.06798904  [1612] AvsInit_DLoadConditional: masktools2.dll                   LoadPlugin OK from 2_WIN7_0\2_AVS26x86\0_CPP
00000529    0.06825425  [1612] AvsInit_DLoadConditional: mvtools2.dll                     LoadPlugin OK from 2_WIN7_0\2_AVS26x86\0_CPP
00000530    0.06852743  [1612] AvsInit_DLoadConditional: RemoveDirt.dll                   LoadPlugin OK from 2_WIN7_0\2_AVS26x86\0_CPP
00000531    0.07002415  [1612] AvsInit_DLoadConditional: !!! Skipping File 0_XP\2_AVS26x86\0_CPP\ffms2.dll, already loaded from 2_WIN7_0\2_AVS26x86\0_CPP
00000532    0.07027993  [1612] AvsInit_DLoadConditional: !!! Skipping File 0_XP\2_AVS26x86\0_CPP\masktools2.dll, already loaded from 2_WIN7_0\2_AVS26x86\0_CPP
00000533    0.07053609  [1612] AvsInit_DLoadConditional: !!! Skipping File 0_XP\2_AVS26x86\0_CPP\mvtools2.dll, already loaded from 2_WIN7_0\2_AVS26x86\0_CPP
00000534    0.07173861  [1612] AvsInit_DLoadConditional: !!! Skipping File 0_XP\1_AVS26Stdx86\0_CPP\ffms2.dll, already loaded from 2_WIN7_0\2_AVS26x86\0_CPP
00000535    0.07199223  [1612] AvsInit_DLoadConditional: !!! Skipping File 0_XP\1_AVS26Stdx86\0_CPP\masktools2.dll, already loaded from 2_WIN7_0\2_AVS26x86\0_CPP
00000536    0.07225128  [1612] AvsInit_DLoadConditional: !!! Skipping File 0_XP\1_AVS26Stdx86\0_CPP\mvtools2.dll, already loaded from 2_WIN7_0\2_AVS26x86\0_CPP
00000537    0.07249874  [1612] AvsInit_DLoadConditional: !!! Skipping File 0_XP\1_AVS26Stdx86\0_CPP\RemoveDirt.dll, already loaded from 2_WIN7_0\2_AVS26x86\0_CPP
00000538    0.07367807  [1612] AvsInit_DLoadConditional: DGDecode.dll                     LoadPlugin OK from 0_XP\0_AVS25x86\0_CPP
00000539    0.07395343  [1612] AvsInit_DLoadConditional: !!! Skipping File 0_XP\0_AVS25x86\0_CPP\ffms2.dll, already loaded from 2_WIN7_0\2_AVS26x86\0_CPP
00000540    0.07420631  [1612] AvsInit_DLoadConditional: !!! Skipping File 0_XP\0_AVS25x86\0_CPP\LSMASHSource.dll, already loaded from 2_WIN7_0\2_AVS26x86\0_CPP
00000541    0.07445921  [1612] AvsInit_DLoadConditional: !!! Skipping File 0_XP\0_AVS25x86\0_CPP\masktools2.dll, already loaded from 2_WIN7_0\2_AVS26x86\0_CPP
00000542    0.07471319  [1612] AvsInit_DLoadConditional: !!! Skipping File 0_XP\0_AVS25x86\0_CPP\mvtools2.dll, already loaded from 2_WIN7_0\2_AVS26x86\0_CPP
00000543    0.07496645  [1612] AvsInit_DLoadConditional: !!! Skipping File 0_XP\0_AVS25x86\0_CPP\RemoveDirt.dll, already loaded from 2_WIN7_0\2_AVS26x86\0_CPP
00000544    0.07555376  [1612] AvsInit_DLoadConditional: STARTING SCRIPT SCAN on C:\VideoTools\AvisynthRepository\MACHINE
00000545    0.07953159  [1612] AvsInit_DLoadConditional:   6 dll's   LOADED : 12 dll's   SKIPPED : 0 dll's   FAILED
00000546    0.07959826  [1612] AvsInit_DLoadConditional:   0 scripts LOADED : 0 Scripts SKIPPED : 0 scripts FAILED
XPx64, Avs+, No Gscript [Uses Import instead of GImport]
Code:
00000059    0.00000000  [1516] AvsInit:
00000060    0.00001215  [1516] AvsInit: Auto load plugins script ENTRY
00000061    0.00004807  [1516] AvsInit:
00000062    0.00141473  [1516] AvsInit:AvsInit_ShowInfo:
00000063    0.00143755  [1516] AvsInit:AvsInit_ShowInfo: AvsInit_Version     = 1.09
00000064    0.00146184  [1516] AvsInit:AvsInit_ShowInfo: RT_Stats Version    = 2.00Beta12
00000065    0.00149818  [1516] AvsInit:AvsInit_ShowInfo: SysInfo Version     = 0.114000
00000066    0.00155596  [1516] AvsInit:AvsInit_ShowInfo: VersionString       = AviSynth+ 3.4 (r2923, 3.4, x86_64)
00000067    0.00159491  [1516] AvsInit:AvsInit_ShowInfo: SetMemoryMax        = 2031
00000068    0.00162934  [1516] AvsInit:AvsInit_ShowInfo: GScript Available   = AVS+
00000069    0.00165863  [1516] AvsInit:AvsInit_ShowInfo: OS Bitness          = 64
00000070    0.00168955  [1516] AvsInit:AvsInit_ShowInfo: Avisynth Bitness    = 64
00000071    0.00170968  [1516] AvsInit:AvsInit_ShowInfo: WorkingDir          = C:\VideoTools\AvisynthRepository\AVSPLUS_x64\plugins\
00000072    0.00173671  [1516] AvsInit:AvsInit_ShowInfo: ProcessName         = C:\NON-INSTALL\VDUB\VDUB2\VirtualDub64.exe
00000073    0.00177308  [1516] AvsInit:AvsInit_ShowInfo: ParentProcessName   = explorer.exe
00000074    0.00180679  [1516] AvsInit:AvsInit_ShowInfo: OSVersionString     = Windows XP (x64) Service Pack 2.0 (Build 3790)
00000075    0.00183594  [1516] AvsInit:AvsInit_ShowInfo: OSVersionNumber     = 5.200000
00000076    0.00186740  [1516] AvsInit:AvsInit_ShowInfo: CPUName             = Intel(R) Core(TM)2 Quad CPU Q6600 @ 2.40GHz / Kentsfield (Core 2 Quad)
00000077    0.00188658  [1516] AvsInit:AvsInit_ShowInfo: Cores               = 04:04 (Phy:Log)
00000078    0.00191437  [1516] AvsInit:AvsInit_ShowInfo: CPU Extensions      = MMX, SSE, SSE2, SSE3, SSSE3
00000079    0.00195066  [1516] AvsInit:AvsInit_ShowInfo: Total Memory        = 8125MB
00000080    0.00198422  [1516] AvsInit:AvsInit_ShowInfo: Avail Memory        = 7386MB'
00000081    0.00201311  [1516] AvsInit:AvsInit_ShowInfo: Screen Res          = 1280x1024
00000082    0.00204410  [1516] AvsInit:AvsInit_ShowInfo: Screen BitsPerPixel = 32
00000083    0.00206354  [1516] AvsInit:AvsInit_ShowInfo: Time                = Tuesday 28 January 2020 00:49:13[GMT Standard Time]
00000084    0.00209012  [1516] AvsInit:AvsInit_ShowInfo: User TEMP Dir       = C:\DOCUME~1\TannisRoot\LOCALS~1\Temp
00000085    0.00212640  [1516] AvsInit:AvsInit_ShowInfo: ComSpec             = C:\WINDOWS\system32\cmd.exe
00000086    0.00216011  [1516] AvsInit:AvsInit_ShowInfo: Computer Name       = Borg-XP64
00000087    0.00218907  [1516] AvsInit:AvsInit_ShowInfo: User Name           = TannisRoot
00000088    0.00221987  [1516] AvsInit:AvsInit_ShowInfo:
00000089    0.01463817  [1516] AvsInit:AvsInit_DImport:     Importing ... C:\VideoTools\AvisynthRepository\GIMPORT\AutoContrast.avsi
00000090    0.01567472  [1516] AvsInit:AvsInit_DImport:     Importing ... C:\VideoTools\AvisynthRepository\GIMPORT\colors_rgb.avsi
00000091    0.01652825  [1516] AvsInit:AvsInit_DImport:     Importing ... C:\VideoTools\AvisynthRepository\GIMPORT\FFMS2.avsi
00000092    0.01827613  [1516] AvsInit:AvsInit_DImport:     Importing ... C:\VideoTools\AvisynthRepository\GIMPORT\JohnFPS.avsi
00000093    0.01890334  [1516] AvsInit:AvsInit_DImport:     Importing ... C:\VideoTools\AvisynthRepository\GIMPORT\MCDegrain.avsi
00000094    0.01985733  [1516] AvsInit:AvsInit_DImport:     Importing ... C:\VideoTools\AvisynthRepository\GIMPORT\Misc.avsi
00000095    0.02288210  [1516] AvsInit:AvsInit_DImport:     Importing ... C:\VideoTools\AvisynthRepository\GIMPORT\QTGMC.3.363s.avsi
00000096    0.03877341  [1516] AvsInit:AvsInit_DImport:     Importing ... C:\VideoTools\AvisynthRepository\GIMPORT\RoboSplice.avsi
00000097    0.04426984  [1516] AvsInit:AvsInit_DImport:         IMPORTED 8 scripts from 'C:\VideoTools\AvisynthRepository\GIMPORT'
00000098    0.04557467  [1516] AvsInit:AvsInit_DImport:         IMPORTED 0 scripts from 'C:\VideoTools\AvisynthRepository\AVSPLUS_x64\plugins\GIMPORT'
00000099    0.06465306  [1516] AvsInit_DLoadConditional: STARTING DLL SCAN on C:\VideoTools\AvisynthRepository\MACHINE
00000100    0.06566627  [1516] AvsInit_DLoadConditional: masktools2.dll                   LoadPlugin OK from 0_XP\5_AVS26x64\0_CPP
00000101    0.06585696  [1516] AvsInit_DLoadConditional: mvtools2.dll                     LoadPlugin OK from 0_XP\5_AVS26x64\0_CPP
00000102    0.06675056  [1516] AvsInit_DLoadConditional: ffms2.dll                        LoadPlugin OK from 0_XP\4_AVS26Stdx64\0_CPP
00000103    0.06695727  [1516] AvsInit_DLoadConditional: !!! Skipping File 0_XP\4_AVS26Stdx64\0_CPP\masktools2.dll, already loaded from 0_XP\5_AVS26x64\0_CPP
00000104    0.06713965  [1516] AvsInit_DLoadConditional: RemoveDirt.dll                   LoadPlugin OK from 0_XP\4_AVS26Stdx64\0_CPP
00000105    0.06803463  [1516] AvsInit_DLoadConditional: DGDecode.dll                     LoadPlugin OK from 0_XP\3_AVS25x64\0_CPP
00000106    0.06823686  [1516] AvsInit_DLoadConditional: !!! Skipping File 0_XP\3_AVS25x64\0_CPP\ffms2.dll, already loaded from 0_XP\4_AVS26Stdx64\0_CPP
00000107    0.06840688  [1516] AvsInit_DLoadConditional: LSMASHSource.dll                 LoadPlugin OK from 0_XP\3_AVS25x64\0_CPP
00000108    0.06860638  [1516] AvsInit_DLoadConditional: !!! Skipping File 0_XP\3_AVS25x64\0_CPP\masktools2.dll, already loaded from 0_XP\5_AVS26x64\0_CPP
00000109    0.06898533  [1516] AvsInit_DLoadConditional: STARTING SCRIPT SCAN on C:\VideoTools\AvisynthRepository\MACHINE
00000110    0.07104389  [1516] AvsInit_DLoadConditional:   6 dll's   LOADED : 3 dll's   SKIPPED : 0 dll's   FAILED
00000111    0.07108879  [1516] AvsInit_DLoadConditional:   0 scripts LOADED : 0 Scripts SKIPPED : 0 scripts FAILED
__________________
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; 28th January 2020 at 15:45.
StainlessS is offline   Reply With Quote
Old 29th April 2020, 10:41   #36  |  Link
kedautinh12
Registered User
 
Join Date: Jan 2018
Posts: 2,156
can't use with new sysinfo 0.117 from Groucho
kedautinh12 is offline   Reply With Quote
Old 29th April 2020, 10:47   #37  |  Link
Groucho2004
 
Join Date: Mar 2006
Location: Barcelona
Posts: 5,034
Quote:
Originally Posted by kedautinh12 View Post
can't use with new sysinfo 0.117 from Groucho
I uploaded SysInfo 0.1.1.5 to my mediafire suppository. It'll work with that one.
__________________
Groucho's Avisynth Stuff
Groucho2004 is offline   Reply With Quote
Old 30th April 2020, 14:30   #38  |  Link
kedautinh12
Registered User
 
Join Date: Jan 2018
Posts: 2,156
When you update AvsInit suitable with new sysinfo??
kedautinh12 is offline   Reply With Quote
Old 30th April 2020, 14:38   #39  |  Link
StainlessS
HeartlessS Usurer
 
StainlessS's Avatar
 
Join Date: Dec 2009
Location: Over the rainbow
Posts: 10,980
Will do soon. [making some significant changes]
__________________
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 30th April 2020, 14:57   #40  |  Link
kedautinh12
Registered User
 
Join Date: Jan 2018
Posts: 2,156
Quote:
Originally Posted by StainlessS View Post
Will do soon. [making some significant changes]
Oh, thanks
kedautinh12 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 13:18.


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