mirror of https://github.com/VERT-sh/VERT.git
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)
This commit is contained in:
parent
4389c06a56
commit
9cb4d6f5e9
|
@ -212,6 +212,20 @@ export class VertdConverter extends Converter {
|
||||||
new FormatInfo("mts", true, true),
|
new FormatInfo("mts", true, true),
|
||||||
new FormatInfo("ts", true, true),
|
new FormatInfo("ts", true, true),
|
||||||
new FormatInfo("m2ts", 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
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
||||||
|
|
Loading…
Reference in New Issue