mirror of
https://github.com/rosenbjerg/FFMpegCore.git
synced 2024-11-10 08:34:12 +01:00
15 lines
No EOL
247 B
C#
15 lines
No EOL
247 B
C#
using FFMpegCore.Test.Resources;
|
|
using System.IO;
|
|
|
|
namespace FFMpegCore.Test
|
|
{
|
|
public class BaseTest
|
|
{
|
|
protected FileInfo Input;
|
|
|
|
public BaseTest()
|
|
{
|
|
Input = VideoLibrary.LocalVideo;
|
|
}
|
|
}
|
|
} |