mirror of
https://github.com/revenz/FileFlowsPlugins.git
synced 2026-01-10 09:29:31 -06:00
20 lines
585 B
C#
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");
|
|
}
|
|
}
|
|
} |