refactored video hw testing

removed obsolete plugins
This commit is contained in:
john
2022-11-04 13:08:29 +13:00
parent ee200bfe3a
commit 767aaac83b
68 changed files with 149 additions and 5166 deletions
+4
View File
@@ -42,6 +42,10 @@ namespace FileFlows.VideoNodes
public static string GetFFMpegPath(NodeParameters args) => args.GetToolPath("FFMpeg");
public VideoInfo Read(string filename)
{
#if(DEBUG) // UNIT TESTING
filename = filename.Replace("~/", Environment.GetFolderPath(Environment.SpecialFolder.UserProfile) + "/");
#endif
var vi = new VideoInfo();
vi.FileName = filename;
if (File.Exists(filename) == false)