mirror of
https://github.com/revenz/FileFlowsPlugins.git
synced 2025-12-30 17:29:30 -06:00
FF-394 - added remux to webm
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
@@ -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.",
|
||||
|
||||
Reference in New Issue
Block a user