From f3ddd97827d96e99f14d63d90a301a9f55f60535 Mon Sep 17 00:00:00 2001 From: Maya Date: Fri, 25 Jul 2025 15:49:42 +0300 Subject: [PATCH] feat: oga/opus support fixes #105 --- src/lib/converters/ffmpeg.svelte.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/lib/converters/ffmpeg.svelte.ts b/src/lib/converters/ffmpeg.svelte.ts index e853046..7272a07 100644 --- a/src/lib/converters/ffmpeg.svelte.ts +++ b/src/lib/converters/ffmpeg.svelte.ts @@ -15,6 +15,8 @@ export class FFmpegConverter extends Converter { new FormatInfo("wav", true, true), new FormatInfo("flac", true, true), new FormatInfo("ogg", true, true), + new FormatInfo("oga", true, true), + new FormatInfo("opus", true, true), new FormatInfo("aac", true, true), new FormatInfo("m4a", true, true), new FormatInfo("wma", true, true),