FFMpegCore/FFMpegCore.Test/BaseTest.cs

15 lines
247 B
C#
Raw Normal View History

2020-05-09 17:53:03 +02:00
using FFMpegCore.Test.Resources;
2019-02-08 11:19:40 +01:00
using System.IO;
2019-03-03 00:33:00 +01:00
namespace FFMpegCore.Test
2019-02-08 11:19:40 +01:00
{
public class BaseTest
{
protected FileInfo Input;
public BaseTest()
{
Input = VideoLibrary.LocalVideo;
}
}
}