Add .gitignore to exclude all node packages and lock files
This commit is contained in:
Generated
Vendored
+26
@@ -0,0 +1,26 @@
|
||||
import type { MediaParserContainer, MediaParserLogLevel, MediaParserVideoTrack } from '@remotion/media-parser';
|
||||
import type { ConvertMediaContainer } from './get-available-containers';
|
||||
import type { ConvertMediaVideoCodec } from './get-available-video-codecs';
|
||||
import type { ResizeOperation } from './resizing/mode';
|
||||
export type VideoOperation = {
|
||||
type: 'reencode';
|
||||
videoCodec: ConvertMediaVideoCodec;
|
||||
rotate?: number;
|
||||
resize?: ResizeOperation | null;
|
||||
} | {
|
||||
type: 'copy';
|
||||
} | {
|
||||
type: 'drop';
|
||||
} | {
|
||||
type: 'fail';
|
||||
};
|
||||
export type ConvertMediaOnVideoTrackHandler = (options: {
|
||||
defaultVideoCodec: ConvertMediaVideoCodec | null;
|
||||
track: MediaParserVideoTrack;
|
||||
logLevel: MediaParserLogLevel;
|
||||
outputContainer: ConvertMediaContainer;
|
||||
rotate: number;
|
||||
resizeOperation: ResizeOperation | null;
|
||||
inputContainer: MediaParserContainer;
|
||||
canCopyTrack: boolean;
|
||||
}) => VideoOperation | Promise<VideoOperation>;
|
||||
Reference in New Issue
Block a user