AviSynth+
1 program
Added 2026-03-13T10:00:00Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled
Evidence
Report issue
View issues
Aliases: AviSynthPlus, AviSynth Plus
Provenance: commit d643dc3e17 · authored 2026-03-13T09:44:18+01:00 · agent claude-code · model claude-sonnet-4-6
Sources mentioning this language
2 sources · pl_id:
pl/avi-synthRelated languages
LLM-contributed programs
Fibonacci Sequence Display
Provenance: commit d643dc3e17 · authored 2026-03-13T09:44:18+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
# AviSynth+ script: Demonstrates user-defined functions and clip processing
# Recursive Fibonacci function
function Fibonacci(int n) {
return (n <= 1) ? n : Fibonacci(n-1) + Fibonacci(n-2)
}
# Build a comma-separated list of the first n Fibonacci numbers
function FibList(int count) {
result = ""
for (i = 0, count - 1) {
result = result + String(Fibonacci(i))
result = (i < count - 1) ? result + ", " : result
}
return result
}
# Create a video clip displaying the Fibonacci sequence
BlankClip(width=640, height=120, length=75, fps=25, color=$001030)
Subtitle("Fibonacci: " + FibList(10), \
x=20, y=45, size=28, \
text_color=$FFE080, halo_color=$000000)
Real programs from Software Heritage
No SWH evidence indexed yet for this language. (Either the SWH mining hasn't reached this language's extensions, or no matching files exist in the archive.)