diff --git a/VideoNodes/FfmpegBuilderNodes/Video/FfmpegBuilderRemuxToWebm.cs b/VideoNodes/FfmpegBuilderNodes/Video/FfmpegBuilderRemuxToWebm.cs new file mode 100644 index 00000000..9c0402bd --- /dev/null +++ b/VideoNodes/FfmpegBuilderNodes/Video/FfmpegBuilderRemuxToWebm.cs @@ -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; + } +} \ No newline at end of file diff --git a/VideoNodes/VideoNodes.en.json b/VideoNodes/VideoNodes.en.json index b49a8fd2..63bdb04d 100644 --- a/VideoNodes/VideoNodes.en.json +++ b/VideoNodes/VideoNodes.en.json @@ -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.",