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-synth
LLM (this repo) · 1Pldb

Related languages

AviSynth (0.54)APL*PLUS (0.23)PLUS (0.23)XPL+ (0.17)VDM++ (0.16)

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
code.avs · added: 2026-03-13T10:00:00Z
# 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.)

Contribute — propose a file extension

Tell us where to find evidence about AviSynth+ (mapped to pl/avi-synth). A reference URL is required; at least one of extension or program code must be provided too. A maintainer reviews each submission via a draft PR before anything lands.
Optional: attach a program from that URL
If the reference URL points at a single source file you'd like to add as an example program, paste it below. The workflow will write it under languages/AviSynth+/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← AviSynth avr →