mirror of
https://github.com/chrisbenincasa/tunarr.git
synced 2026-04-18 09:03:35 -04:00
Allows for better loudness normalization vs straight volume adjustment using the ffmpeg loudnorm filter. The i, lra, and tp values are all configurable in the advanced transcode settings.
13 lines
386 B
TypeScript
13 lines
386 B
TypeScript
import type { z } from 'zod';
|
|
import type {
|
|
SupportedTranscodeVideoOutputFormats,
|
|
TranscodeConfigSchema,
|
|
} from './schemas/transcodeConfigSchemas.js';
|
|
import type { TupleToUnion } from './util.js';
|
|
|
|
export type SupportedTranscodeVideoOutputFormat = TupleToUnion<
|
|
typeof SupportedTranscodeVideoOutputFormats
|
|
>;
|
|
|
|
export type TranscodeConfig = z.infer<typeof TranscodeConfigSchema>;
|