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. |
![]() |
#201 | Link |
Registered User
Join Date: Jul 2018
Posts: 414
|
@Wilbert, the actions reported in the previous post are continuing.
Now are even worse: - Raffriff42 talks are deleted - http://avisynth.nl/index.php?title=U...30&oldid=10170 - Main page is modified - http://avisynth.nl/index.php?title=M...31&oldid=12798 / http://avisynth.nl/index.php?title=M...33&oldid=13231 / http://avisynth.nl/index.php?title=M...35&oldid=13233 / http://avisynth.nl/index.php?title=M...36&oldid=13235 What's this discord channel? |
![]() |
![]() |
![]() |
#202 | Link |
Moderator
![]() Join Date: Nov 2001
Location: Netherlands
Posts: 6,364
|
Sorry for the mess. I banned several ip's and removed all their crap. I'm not sure if these people pass the captcha test (or that they register in other way but that should be impossible), so i made this unusable for now. Please send me a PM if this crap continues. If you do then i get notified by email and see it directly.
|
![]() |
![]() |
![]() |
#203 | Link |
Registered User
Join Date: Jul 2018
Posts: 414
|
Thanks for cleaning the mess. I guess "Community Collaboration Page" at top of the Main page can be removed alongside http://avisynth.nl/index.php/Community ?
|
![]() |
![]() |
![]() |
#204 | Link |
Moderator
![]() Join Date: Nov 2001
Location: Netherlands
Posts: 6,364
|
Ok i removed it. It could be interesting for some of you though. The discord channel is about video restoration (using AviSynth): https://disboard.org/server/1123729107553886218 Here is another one about video restoration with AviSynth: https://disboard.org/server/767288963912171550
I didn't joint to take a look. Does someone know about these channels? |
![]() |
![]() |
![]() |
#208 | Link | ||
HeartlessS Usurer
Join Date: Dec 2009
Location: Over the rainbow
Posts: 10,877
|
Error on Wiki page for External Filters ColorScreenMask:- http://avisynth.nl/index.php/ColorScreenMask
Quote:
EDIT: Also, Internal Filter ColorKeyMask:- http://www.avisynth.nl/index.php/Layer Quote:
ie [from code:- https://github.com/AviSynth/AviSynth...layer.cpp#L420 ]. Code:
AVSValue __cdecl ColorKeyMask::Create(AVSValue args, void*, IScriptEnvironment* env) { enum { CHILD, COLOR, TOLERANCE_B, TOLERANCE_G, TOLERANCE_R }; return new ColorKeyMask(args[CHILD].AsClip(), args[COLOR].AsInt(0), args[TOLERANCE_B].AsInt(10), args[TOLERANCE_G].AsInt(args[TOLERANCE_B].AsInt(10)), args[TOLERANCE_R].AsInt(args[TOLERANCE_B].AsInt(10)), env); } EDIT: Also [BELOW for CODE not Wiki], ColorKeyMask, arg color is supposed to be optional, but is not optional, and also all args are unnamed. [Would perhaps be better if named:- https://forum.doom9.org/showthread.p...03#post1211003 ] Code:
Colorbars().killaudio ColorKeyMask() # FAILS, color not optional and should be Code:
Colorbars().killaudio ColorKeyMask(0,10,10,10) # OK Code:
Colorbars().killaudio ColorKeyMask(0,TolB=10) # FAILS, TolB not Named optional arg Code:
{ "ColorKeyMask", "ci[]i[]i[]i", ColorKeyMask::Create } Code:
{ "ColorKeyMask", "c[]i[]i[]i[]i", ColorKeyMask::Create } Code:
{ "ColorKeyMask", "c[color]i[tolB]i[tolG]i[tolR]i", ColorKeyMask::Create } # ColorKeyMask(clip c, int "color"=$00000000, int "tolB"=10, int "tolG"=10, int "tolR"=10)
__________________
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; 20th November 2023 at 15:28. |
||
![]() |
![]() |
![]() |
#209 | Link | |
Registered User
Join Date: Jan 2014
Posts: 2,272
|
thanks for the report.
Quote:
Code:
args[TOLERANCE_B].AsInt(10) 3.) Central doc is not ready yet, for example it mentions ColorKeyMask , Mask, ResetMask twice. The old ones are in the yet-to-be-ported Layer page (layer.rst in gitgub). https://avisynthplus.readthedocs.io/...l#colorkeymask You can however find the updates in the "Mask Filters" section (mask.rst) https://avisynthplus.readthedocs.io/...l#colorkeymask When layer will be updated the duplicates will be removed. 4.) yes, color must be optional, but as you noticed, it's not. Present parameter signature is "ci[]i[]i[]i" which requires an unnamed second parameter indeed. EDIT: I've checked the history: 'color' was never optional at least since 2004. Documentation was wrong. Your proposal that all parameters would have a real name makes sense. Signature would be: "c[color]i[tolB]i[tolG]i[tolR]i" We all like when parameters have friendly names don't we. I suppose it helps AvsPMod users as well, no need to guess the meaning of the parameters. Last edited by pinterf; 22nd November 2023 at 13:43. Reason: color was never optional |
|
![]() |
![]() |
![]() |
#210 | Link | |
HeartlessS Usurer
Join Date: Dec 2009
Location: Over the rainbow
Posts: 10,877
|
Quote:
__________________
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 ??? |
|
![]() |
![]() |
![]() |
Thread Tools | Search this Thread |
Display Modes | |
|
|