refactor: make export audio consistent to preview

fixes audio export issue with .mkv files
This commit is contained in:
Maze Winther
2026-02-23 09:28:54 +01:00
parent 1762dc077d
commit 86a3592c88
2 changed files with 63 additions and 9 deletions
@@ -13,11 +13,9 @@ import {
QUALITY_VERY_HIGH,
} from "mediabunny";
import type { RootNode } from "./nodes/root-node";
import type { ExportFormat, ExportQuality } from "@/types/export";
import { CanvasRenderer } from "./canvas-renderer";
export type ExportFormat = "mp4" | "webm";
export type ExportQuality = "low" | "medium" | "high" | "very_high";
type ExportParams = {
width: number;
height: number;