Thread: Avisynth+
View Single Post
Old 3rd July 2019, 13:08   #4779  |  Link
StainlessS
HeartlessS Usurer
 
StainlessS's Avatar
 
Join Date: Dec 2009
Location: Over the rainbow
Posts: 10,980
New test build, ..., you dont get rid of me that easily.

Code:
Function StringRepeater(String BaseS, String RepS, int n) { # https://forum.doom9.org/showthread.php?p=1878193#post1878193
    # Add n instances of repeat string RepS, to base string BaseS.
    return (n>=1) ? StringRepeater(BaseS+RepS,RepS,n-1):BaseS
}

Blankclip(color=$FFFFFF)
ConvertToRGB24
#ConvertToRGB48
#ConvertToRGB64
S=StringRepeater("Last",".Blur(1.58)",500)
Eval(S)
return last.Info
RGB24 [RGB32 & RGB48 similar]


RGB64


"Nobody expects the Spanish Inquisition".
__________________
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