added remux to mov

This commit is contained in:
john
2022-10-28 20:23:21 +13:00
parent fe5e93f8e7
commit ee200bfe3a
2 changed files with 19 additions and 0 deletions
@@ -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;
}
}
+7
View File
@@ -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.",