1.1.6 • Published 6 months ago

@types/ffmpeg-concat v1.1.6

Weekly downloads
84
License
MIT
Repository
github
Last release
6 months ago

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

// Type definitions for ffmpeg-concat 1.1
// Project: https://github.com/transitive-bullshit/ffmpeg-concat
// Definitions by: DefinitelyTyped <https://github.com/DefinitelyTyped>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped

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?: ReadonlyArray<Transition> | undefined;
    videos: ReadonlyArray<string>;
}

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

export = concat;

Additional Details

  • Last updated: Thu, 23 Dec 2021 23:34:37 GMT
  • Dependencies: none
  • Global values: none

Credits

These definitions were written by DefinitelyTyped.

1.1.6

6 months ago

1.1.5

7 months ago

1.1.4

7 months ago

1.1.3

8 months ago

1.1.2

2 years ago

1.1.1

3 years ago

1.1.0

4 years ago