fix: remove "to" alac conversion

doesn't work w/ ffmpeg wasm
This commit is contained in:
JovannMC 2025-04-29 17:54:38 +03:00
parent 262b2a3c53
commit 6f2eefd39f
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ export class FFmpegConverter extends Converter {
new FormatInfo("wma", true, true), new FormatInfo("wma", true, true),
new FormatInfo("amr", true, true), new FormatInfo("amr", true, true),
new FormatInfo("ac3", true, true), new FormatInfo("ac3", true, true),
new FormatInfo("alac", true, true), new FormatInfo("alac", true, false),
new FormatInfo("aiff", true, true), new FormatInfo("aiff", true, true),
]; ];