mediaforge - v0.1.0
    Preparing search index...

    Interface GifOptions

    interface GifOptions {
        input: string;
        output: string;
        width?: number;
        fps?: number;
        startTime?: string | number;
        duration?: string | number;
        colors?: number;
        dither?: "none" | "bayer" | "floyd_steinberg" | "sierra2" | "sierra2_4a";
        binary?: string;
    }
    Index

    Properties

    input: string

    Input file

    output: string

    Output GIF path

    width?: number

    Output width. Height auto-scales. Default: 480

    fps?: number

    Frames per second. Default: 15

    startTime?: string | number

    Start time

    duration?: string | number

    Duration in seconds

    colors?: number

    Number of colors (2-256). Default: 256

    dither?: "none" | "bayer" | "floyd_steinberg" | "sierra2" | "sierra2_4a"

    Dither mode. Default: 'bayer'

    binary?: string

    ffmpeg binary override