From 3375cdec4051057a3d4f305c54f72589c50bdc3f Mon Sep 17 00:00:00 2001 From: John Andrews Date: Thu, 10 Mar 2022 15:17:17 +1300 Subject: [PATCH] removing videoinfo check from ffmpeg --- VideoNodes/VideoNodes/FFMPEG.cs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/VideoNodes/VideoNodes/FFMPEG.cs b/VideoNodes/VideoNodes/FFMPEG.cs index 635cf580..972de0ff 100644 --- a/VideoNodes/VideoNodes/FFMPEG.cs +++ b/VideoNodes/VideoNodes/FFMPEG.cs @@ -44,10 +44,6 @@ namespace FileFlows.VideoNodes this.args = args; try { - VideoInfo videoInfo = GetVideoInfo(args); - if (videoInfo == null) - return -1; - string ffmpegExe = GetFFMpegExe(args); if (string.IsNullOrEmpty(ffmpegExe)) return -1;