From f9a3197165373a362160409620de1f5393cf81bc Mon Sep 17 00:00:00 2001 From: Malte Rosenbjerg Date: Tue, 16 Jun 2020 07:42:51 +0200 Subject: [PATCH] Update VideoTest.cs --- FFMpegCore.Test/VideoTest.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FFMpegCore.Test/VideoTest.cs b/FFMpegCore.Test/VideoTest.cs index 5371d9a..a0c6d99 100644 --- a/FFMpegCore.Test/VideoTest.cs +++ b/FFMpegCore.Test/VideoTest.cs @@ -70,7 +70,7 @@ private void ConvertFromStreamPipe(ContainerFormat type, params IArgument[] inpu try { var input = FFProbe.Analyse(VideoLibrary.LocalVideoWebm.FullName); - using (var inputStream = File.OpenRead(input.Path)) + using (var inputStream = File.OpenRead(VideoLibrary.LocalVideoWebm.FullName)) { var pipeSource = new StreamPipeSource(inputStream); var arguments = FFMpegArguments.FromPipe(pipeSource);