@types/ffmpeg-concat
TypeScript icon, indicating that this package has built-in type declarations

1.1.6 • Public • Published

Installation

npm install --save @types/ffmpeg-concat

Summary

This package contains type definitions for ffmpeg-concat (https://github.com/transitive-bullshit/ffmpeg-concat).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/ffmpeg-concat.

index.d.ts

interface Transition {
    duration: number;
    name: string;
    params?: any;
}

interface ConcatOptions {
    audio?: string | undefined;
    cleanupFrames?: boolean | undefined;
    concurrency?: number | undefined;
    frameFormat?: "jpg" | "png" | "raw" | undefined;
    log?: ((stdout: string) => void) | undefined;
    output: string;
    tempDir?: string | undefined;
    transition?: Transition | undefined;
    transitions?: readonly Transition[] | undefined;
    videos: readonly string[];
}

declare function concat(concatOptions: ConcatOptions): Promise<void>;

export = concat;

Additional Details

  • Last updated: Mon, 20 Nov 2023 23:36:24 GMT
  • Dependencies: none

Credits

These definitions were written by .

Readme

Keywords

none

Package Sidebar

Install

npm i @types/ffmpeg-concat

Weekly Downloads

724

Version

1.1.6

License

MIT

Unpacked Size

3.57 kB

Total Files

5

Last publish

Collaborators

  • types