mirror of
https://github.com/rosenbjerg/FFMpegCore.git
synced 2024-11-10 08:34:12 +01:00
19 lines
372 B
C#
19 lines
372 B
C#
|
using System.Configuration;
|
|||
|
using System.IO;
|
|||
|
using FFMpegCore.FFMPEG;
|
|||
|
using FFMpegCore.Tests.Resources;
|
|||
|
|
|||
|
namespace FFMpegCore.Tests
|
|||
|
{
|
|||
|
public class BaseTest
|
|||
|
{
|
|||
|
protected FFMpeg Encoder;
|
|||
|
protected FileInfo Input;
|
|||
|
|
|||
|
public BaseTest()
|
|||
|
{
|
|||
|
Encoder = new FFMpeg();
|
|||
|
Input = VideoLibrary.LocalVideo;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|