mirror of
https://github.com/rosenbjerg/FFMpegCore.git
synced 2024-11-10 08:34:12 +01:00
9b855736ab
Former-commit-id: c215191bf5
19 lines
No EOL
372 B
C#
19 lines
No EOL
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;
|
|
}
|
|
}
|
|
} |