mediaforge - v0.3.0
    Preparing search index...

    Interface ExtractFramesOptions

    interface ExtractFramesOptions {
        input: string;
        folder: string;
        fps?: string;
        startTime?: string | number;
        endTime?: string | number;
        filename?: string;
        size?: string;
        format?: "png" | "bmp" | "jpg" | "tiff";
        binary?: string;
    }
    Index

    Properties

    input: string

    Input file path

    folder: string

    Output folder for frames

    fps?: string

    Frame rate to extract (e.g. '1/1' for 1fps, '30' for 30fps). Default: '1'

    startTime?: string | number

    Start time in seconds or HH:MM:SS

    endTime?: string | number

    End time in seconds or HH:MM:SS

    filename?: string

    Output filename pattern. Default: 'frame_%05d.png'

    size?: string

    Output size, e.g. '1920x1080'

    format?: "png" | "bmp" | "jpg" | "tiff"

    Output format. Default: 'png'

    binary?: string

    ffmpeg binary override