mirror of
https://github.com/FlipsideCrypto/DefinitelyTyped.git
synced 2026-02-06 19:07:08 +00:00
30 lines
568 B
TypeScript
30 lines
568 B
TypeScript
import concat from 'ffmpeg-concat';
|
|
|
|
concat({
|
|
audio: '',
|
|
cleanupFrames: true,
|
|
concurrency: 4,
|
|
frameFormat: 'raw',
|
|
log: () => {},
|
|
output: '',
|
|
tempDir: '',
|
|
transition: {
|
|
duration: 100,
|
|
name: '',
|
|
params: { direction: [1, -1] },
|
|
},
|
|
transitions: [
|
|
{
|
|
duration: 100,
|
|
name: '',
|
|
params: { direction: [1, -1] },
|
|
},
|
|
{
|
|
duration: 100,
|
|
name: '',
|
|
params: { direction: [1, -1] },
|
|
},
|
|
],
|
|
videos: ['', ''],
|
|
});
|