Adds a de-interlace module and stuff
All checks were successful
KnarCraft/FFmpegConvert/pipeline/head This commit looks good

Adds a module to de-interlace when converting a video. It's enabled by a new configuration option.
Fixes some bugs in the letterbox cropper
Adds mpeg4 to video formats
This commit is contained in:
2024-05-29 17:06:32 +02:00
parent c0c8c9c054
commit 1dc489a6f8
20 changed files with 68 additions and 18 deletions

View File

@@ -184,8 +184,8 @@ public final class FFMpegHelper {
* @param stream <p>The stream to map</p>
*/
public static void mapStream(@NotNull FFMpegCommand command, @NotNull StreamObject stream) {
command.addOutputFileOption("-map", String.format("%d:%d",
stream.getInputIndex(), stream.getAbsoluteIndex()));
command.addOutputFileOption("-map", String.format("%d:%d", stream.getInputIndex(),
stream.getAbsoluteIndex()));
}
/**