mirror of
https://github.com/revenz/FileFlowsPlugins.git
synced 2025-12-30 11:19:31 -06:00
FF-1032 - removing "Nodes" from plugin names
This commit is contained in:
@@ -42,7 +42,7 @@ namespace FileFlows.VideoNodes.FfmpegBuilderNodes
|
||||
return false;
|
||||
|
||||
if(this is FfmpegBuilderStart == false && Model == null)
|
||||
throw new Exception("FFMPEG Builder Model not set, you must add and use the \"FFMPEG Builder Start\" node first");
|
||||
throw new Exception("FFMPEG Builder Model not set, you must add and use the \"FFMPEG Builder Start\" flow element first");
|
||||
|
||||
if (this is FfmpegBuilderStart == false)
|
||||
{
|
||||
|
||||
@@ -8,7 +8,7 @@ public class Plugin : FileFlows.Plugin.IPlugin
|
||||
/// <inheritdoc />
|
||||
public Guid Uid => new Guid("881b486b-4b38-4e66-b39e-fbc0fc9deee1");
|
||||
/// <inheritdoc />
|
||||
public string Name => "Video Nodes";
|
||||
public string Name => "Video";
|
||||
/// <inheritdoc />
|
||||
public string MinimumVersion => "1.0.4.2019";
|
||||
/// <inheritdoc />
|
||||
|
||||
@@ -455,8 +455,7 @@ public class LocalFileService : IFileService
|
||||
|
||||
bool isFile = new FileInfo(path).Exists;
|
||||
|
||||
FileHelper.SetPermissions(logger, path, file: isFile,
|
||||
permissions: permissions.Value.ToString("D3"));
|
||||
FileHelper.SetPermissions(logger, path, file: isFile, permissions: permissions);
|
||||
|
||||
FileHelper.ChangeOwner(logger, path, file: isFile, ownerGroup: OwnerGroup);
|
||||
|
||||
|
||||
@@ -9,9 +9,9 @@
|
||||
<PublishTrimmed>true</PublishTrimmed>
|
||||
<Company>FileFlows</Company>
|
||||
<Authors>John Andrews</Authors>
|
||||
<Product>Video Nodes</Product>
|
||||
<Product>Video</Product>
|
||||
<PackageProjectUrl>https://fileflows.com/</PackageProjectUrl>
|
||||
<Description>Nodes for processing video files. This plugin contains nodes to convert video files to different formats. Node to parse the video information from a file.</Description>
|
||||
<Description>Flow element for the processing of video files, including but not limited to video file conversion, video file detection, upscaling, downscaling, and transcoding.</Description>
|
||||
<RootNamespace> FileFlows.$(MSBuildProjectName.Replace(" ", "_"))</RootNamespace>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
||||
|
||||
@@ -8,7 +8,7 @@ using System.Threading.Tasks;
|
||||
namespace FileFlows.VideoNodes.VideoNodes;
|
||||
|
||||
/// <summary>
|
||||
/// Node that converts a audio file into a video file and generates a video based on the audio
|
||||
/// Flow Element that converts a audio file into a video file and generates a video based on the audio
|
||||
/// </summary>
|
||||
public class AudioToVideo : EncodingNode
|
||||
{
|
||||
|
||||
@@ -217,7 +217,7 @@ namespace FileFlows.VideoNodes
|
||||
{
|
||||
if (args.Parameters.ContainsKey(VIDEO_INFO) == false)
|
||||
{
|
||||
args.Logger.WLog("No codec information loaded, use a 'VideoFile' node first");
|
||||
args.Logger.WLog("No codec information loaded, use a 'VideoFile' flow element first");
|
||||
return null;
|
||||
}
|
||||
|
||||
|
||||
@@ -102,7 +102,7 @@
|
||||
"FfmpegBuilderStart": {
|
||||
"Label": "FFMPEG Builder: Start",
|
||||
"Outputs": {
|
||||
"1": "FFMPEG Builder created and ready to add FFMPEG Builder nodes to"
|
||||
"1": "FFMPEG Builder created and ready to add FFMPEG Builder flow elements to"
|
||||
},
|
||||
"Description": "Creates an instance of the FFMPEG Builder which can build a FFMPEG argument to then execute with the FFMPEG Executor."
|
||||
},
|
||||
@@ -122,7 +122,7 @@
|
||||
"1": "FFMPEG Builder ran successfully and created new temporary file",
|
||||
"2": "No changes detected in FFMPEG Builder, file not created"
|
||||
},
|
||||
"Description": "Executes a FFMPEG Builder command created by other FFMPEG Builder nodes.",
|
||||
"Description": "Executes a FFMPEG Builder command created by other FFMPEG Builder flow elements.",
|
||||
"Fields": {
|
||||
"HardwareDecoding": "Hardware Decoding",
|
||||
"HardwareDecoding-Help": "If the executor should attempt to use hardware decoding. If not available the execution will proceed just without hardware decoding enabled.",
|
||||
@@ -375,7 +375,7 @@
|
||||
},
|
||||
"FfmpegBuilderMetadataRemover": {
|
||||
"Label": "FFMPEG Builder: Metadata Remover",
|
||||
"Description": "Removes metadata from the FFMPEG Builder so when the file is processed the selected metadata will be removed.\n\nNote: Only the metadata when this node is effected, if metadata is added after this node runs, that will not be effected.",
|
||||
"Description": "Removes metadata from the FFMPEG Builder so when the file is processed the selected metadata will be removed.\n\nNote: Only the metadata when this flow element is effected, if metadata is added after this node runs, that will not be effected.",
|
||||
"Outputs": {
|
||||
"1": "Metadata removed from FFMPEG Builder"
|
||||
},
|
||||
@@ -430,7 +430,7 @@
|
||||
},
|
||||
"FfmpegBuilderSubtitleClearDefault": {
|
||||
"Label": "FFMPEG Builder: Subtitle Clear Default",
|
||||
"Description": "This node will clear the default flag from subtitles.",
|
||||
"Description": "This flow element will clear the default flag from subtitles.",
|
||||
"Fields": {
|
||||
"LeaveForced": "Leave Forced",
|
||||
"LeaveForced-Help": "When checked all forced subtitles will not be touched, they will maintain their original setting. This is executed prior to 'Set Forced Default' so takes precedent.",
|
||||
|
||||
Reference in New Issue
Block a user