Add .gitignore to exclude all node packages and lock files
This commit is contained in:
Generated
Vendored
+23
@@ -0,0 +1,23 @@
|
||||
import type { MediaParserAudioTrack, MediaParserContainer, MediaParserLogLevel } from '@remotion/media-parser';
|
||||
import type { ConvertMediaAudioCodec } from './get-available-audio-codecs';
|
||||
import type { ConvertMediaContainer } from './get-available-containers';
|
||||
export type AudioOperation = {
|
||||
type: 'reencode';
|
||||
bitrate: number;
|
||||
audioCodec: ConvertMediaAudioCodec;
|
||||
sampleRate: number | null;
|
||||
} | {
|
||||
type: 'copy';
|
||||
} | {
|
||||
type: 'fail';
|
||||
} | {
|
||||
type: 'drop';
|
||||
};
|
||||
export type ConvertMediaOnAudioTrackHandler = (options: {
|
||||
track: MediaParserAudioTrack;
|
||||
defaultAudioCodec: ConvertMediaAudioCodec | null;
|
||||
logLevel: MediaParserLogLevel;
|
||||
outputContainer: ConvertMediaContainer;
|
||||
inputContainer: MediaParserContainer;
|
||||
canCopyTrack: boolean;
|
||||
}) => AudioOperation | Promise<AudioOperation>;
|
||||
Reference in New Issue
Block a user