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