Files
FileFlowsPlugins/VideoNodes/Plugin.cs
2021-11-21 07:07:37 +13:00

20 lines
585 B
C#

namespace FileFlows.VideoNodes
{
using System.ComponentModel.DataAnnotations;
using FileFlows.Plugin.Attributes;
public class Plugin : FileFlows.Plugin.IPlugin
{
public string Name => "Video Nodes";
[Required]
[File(2, "exe")]
public string FFProbeExe { get; set; }
public void Init()
{
//var context = new System.Runtime.Loader.AssemblyLoadContext(null, true);
//context.LoadFromAssemblyPath(@"C:\Users\john\src\ViWatcher\Plugins\VideoNodes\bin\Debug\net6.0\FFMpegCore.dll");
}
}
}