| 11 | import {ffmpegSettings} from './settings'; |
| 12 | |
| 13 | export interface FFmpegExporterSettings extends RendererSettings { |
| 14 | fastStart: boolean; |
| 15 | includeAudio: boolean; |
| 16 | output: string; |
| 17 | } |
| 18 | |
| 19 | const pixelFormats: Record<FfmpegExporterOptions['format'], string> = { |
| 20 | mp4: 'yuv420p', |
nothing calls this directly
no outgoing calls
no test coverage detected