mirror of
https://github.com/OpenCut-app/OpenCut.git
synced 2026-07-13 21:52:53 +02:00
13 lines
262 B
TypeScript
13 lines
262 B
TypeScript
import type { ExportOptions } from "@/lib/export";
|
|
|
|
export const DEFAULT_EXPORT_OPTIONS = {
|
|
format: "mp4",
|
|
quality: "high",
|
|
includeAudio: true,
|
|
} satisfies ExportOptions;
|
|
|
|
export const EXPORT_MIME_TYPES = {
|
|
webm: "video/webm",
|
|
mp4: "video/mp4",
|
|
} as const;
|