fix: update supported audio formats

.alacs don't exist in the wild, you'd only find them as .m4a
amr can only be converted from, not to (need to build ffmpeg with the encoder)
This commit is contained in:
JovannMC 2025-05-28 19:05:14 +03:00
parent 21d9358a17
commit 4d9a11f262
No known key found for this signature in database
1 changed files with 1 additions and 2 deletions

View File

@ -21,9 +21,8 @@ export class FFmpegConverter extends Converter {
new FormatInfo("m4a"),
...videoFormats.map((f) => new FormatInfo(f, true, true, false)),
new FormatInfo("wma"),
new FormatInfo("amr"),
new FormatInfo("amr", true, false),
new FormatInfo("ac3"),
new FormatInfo("alac"),
new FormatInfo("aiff"),
];