diff --git a/VideoNodes/FfmpegBuilderNodes/Video/FfmpegBuilderRemuxToMov.cs b/VideoNodes/FfmpegBuilderNodes/Video/FfmpegBuilderRemuxToMov.cs new file mode 100644 index 00000000..fcf98a58 --- /dev/null +++ b/VideoNodes/FfmpegBuilderNodes/Video/FfmpegBuilderRemuxToMov.cs @@ -0,0 +1,12 @@ +namespace FileFlows.VideoNodes.FfmpegBuilderNodes; + +public class FfmpegBuilderRemuxToMov : FfmpegBuilderNode +{ + public override string HelpUrl => "https://docs.fileflows.com/plugins/video-nodes/ffmpeg-builder/remux-to-mov"; + + public override int Execute(NodeParameters args) + { + this.Model.Extension = "mov"; + return 1; + } +} \ No newline at end of file diff --git a/VideoNodes/VideoNodes.en.json b/VideoNodes/VideoNodes.en.json index c2a2d100..6fe26e06 100644 --- a/VideoNodes/VideoNodes.en.json +++ b/VideoNodes/VideoNodes.en.json @@ -359,6 +359,13 @@ "1": "FFMPEG Builder set to remux to MP4" } }, + "FfmpegBuilderRemuxToMOV": { + "Label": "FFMPEG Builder: Remux to MOV", + "Descritption": "Remuxes a video file into a MOV container.", + "Outputs": { + "1": "FFMPEG Builder set to remux to MOV" + } + }, "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.",