mirror of https://github.com/VERT-sh/VERT.git
feat: new audio formats, language update
This commit is contained in:
parent
9c3aba77b0
commit
09308040b0
|
@ -27,7 +27,7 @@
|
|||
"documents": "Documents",
|
||||
"video": "Video",
|
||||
"video_server_processing": "Server supported",
|
||||
"local_supported": "Local fully supported",
|
||||
"local_supported": "Local supported",
|
||||
"status": {
|
||||
"text": "<b>Status:</b> {status}",
|
||||
"ready": "ready",
|
||||
|
|
|
@ -6,6 +6,7 @@ import { error, log } from "$lib/logger";
|
|||
import { addToast } from "$lib/store/ToastProvider";
|
||||
import { m } from "$lib/paraglide/messages";
|
||||
|
||||
// TODO: differentiate in UI? (not native formats)
|
||||
const videoFormats = [
|
||||
"mkv",
|
||||
"mp4",
|
||||
|
@ -28,6 +29,7 @@ export class FFmpegConverter extends Converter {
|
|||
new FormatInfo("wav", true, true),
|
||||
new FormatInfo("flac", true, true),
|
||||
new FormatInfo("ogg", true, true),
|
||||
new FormatInfo("mogg", true, false),
|
||||
new FormatInfo("oga", true, true),
|
||||
new FormatInfo("opus", true, true),
|
||||
new FormatInfo("aac", true, true),
|
||||
|
@ -38,6 +40,14 @@ export class FFmpegConverter extends Converter {
|
|||
new FormatInfo("alac", true, true),
|
||||
new FormatInfo("aiff", true, true),
|
||||
new FormatInfo("aif", true, true),
|
||||
new FormatInfo("mp1", true, false),
|
||||
new FormatInfo("mp2", true, true),
|
||||
new FormatInfo("mpc", true, false), // unknown if it works, can't find sample file but ffmpeg should support i think?
|
||||
new FormatInfo("raw", true, false), // usually pcm
|
||||
new FormatInfo("dsd", true, false), // dsd
|
||||
new FormatInfo("dsf", true, false), // dsd
|
||||
new FormatInfo("dff", true, false), // dsd
|
||||
new FormatInfo("mqa", true, false),
|
||||
...videoFormats.map((f) => new FormatInfo(f, true, true, false)),
|
||||
];
|
||||
|
||||
|
|
|
@ -72,7 +72,6 @@ export const imageFormats = [
|
|||
new FormatInfo("mng", true, true),
|
||||
new FormatInfo("mono", false, true),
|
||||
new FormatInfo("mpc", true, true), // not ideal (literally empty lol)
|
||||
new FormatInfo("msvg", false, true),
|
||||
new FormatInfo("mtv", true, true),
|
||||
new FormatInfo("o", false, true),
|
||||
new FormatInfo("otb", true, true), // not ideal (completely black and white - maybe format is like that)
|
||||
|
|
Loading…
Reference in New Issue