From 8f66a8f4c2c3c5065e4d16e36accbda50995f919 Mon Sep 17 00:00:00 2001 From: Malte Rosenbjerg Date: Thu, 18 Jun 2020 22:08:44 +0200 Subject: [PATCH] Update VideoTest.cs Former-commit-id: d840f8d237e375bd488a78043442a7cab216d85b --- 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 a0c6d99..5371d9a 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(VideoLibrary.LocalVideoWebm.FullName)) + using (var inputStream = File.OpenRead(input.Path)) { var pipeSource = new StreamPipeSource(inputStream); var arguments = FFMpegArguments.FromPipe(pipeSource);