FF-394 - added remux to webm

This commit is contained in:
john
2023-02-05 13:40:16 +13:00
parent aaa576f776
commit d27c7dce34
2 changed files with 19 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
namespace FileFlows.VideoNodes.FfmpegBuilderNodes;
public class FfmpegBuilderRemuxToWebm : FfmpegBuilderNode
{
public override string HelpUrl => "https://docs.fileflows.com/plugins/video-nodes/ffmpeg-builder/remux-to-webm";
public override int Execute(NodeParameters args)
{
this.Model.Extension = "webm";
return 1;
}
}

View File

@@ -366,6 +366,13 @@
"1": "FFMPEG Builder set to remux to MOV"
}
},
"FfmpegBuilderRemuxToWebm": {
"Label": "FFMPEG Builder: Remux to WEBM",
"Descritption": "Remuxes a video file into a WEGM container.",
"Outputs": {
"1": "FFMPEG Builder set to remux to WEGM"
}
},
"FfmpegBuilderScaler": {
"Label": "FFMPEG Builder: Video Scaler",
"Description": "This allows you to scale a video to the specified dimensions. It will retain the aspect ratio of the video so if the video was 1920x1000 it would scale to 1280x668 if you select 720P.",