From 9cb4d6f5e9d884e0ac6c2819ed362b845bb875ba Mon Sep 17 00:00:00 2001 From: Maya Date: Mon, 28 Jul 2025 20:32:38 +0300 Subject: [PATCH] feat: new video formats + add mpeg/mpg + add flv/f4v + add vob + add h264 + add m4v + add divx + add 3gp/3g2 + add mxf + add ogv + add rm/rmvb (input only) --- src/lib/converters/vertd.svelte.ts | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/src/lib/converters/vertd.svelte.ts b/src/lib/converters/vertd.svelte.ts index e035b17..8216809 100644 --- a/src/lib/converters/vertd.svelte.ts +++ b/src/lib/converters/vertd.svelte.ts @@ -212,6 +212,20 @@ export class VertdConverter extends Converter { new FormatInfo("mts", true, true), new FormatInfo("ts", true, true), new FormatInfo("m2ts", true, true), + new FormatInfo("mpg", true, true), + new FormatInfo("mpeg", true, true), + new FormatInfo("flv", true, true), + new FormatInfo("f4v", true, true), + new FormatInfo("vob", true, true), + new FormatInfo("m4v", true, true), + new FormatInfo("3gp", true, true), + new FormatInfo("3g2", true, true), + new FormatInfo("mxf", true, true), + new FormatInfo("ogv", true, true), + new FormatInfo("rm", true, false), + new FormatInfo("rmvb", true, false), + new FormatInfo("h264", true, true), + new FormatInfo("divx", true, true), ]; // eslint-disable-next-line @typescript-eslint/no-explicit-any