FFMpegCore/FFMpegCore.Test/Resources/TestResources.cs

26 lines
928 B
C#
Raw Normal View History

2021-05-15 11:17:12 +02:00
namespace FFMpegCore.Test.Resources
2020-12-07 00:47:47 +01:00
{
public enum AudioType
{
Mp3
}
public enum ImageType
{
Png
}
public static class TestResources
{
public static readonly string Mp4Video = "./Resources/input_3sec.mp4";
public static readonly string WebmVideo = "./Resources/input_3sec.webm";
public static readonly string Mp4WithoutVideo = "./Resources/input_audio_only_10sec.mp4";
public static readonly string Mp4WithoutAudio = "./Resources/input_video_only_3sec.mp4";
2020-12-07 01:20:13 +01:00
public static readonly string RawAudio = "./Resources/audio.raw";
2020-12-07 00:47:47 +01:00
public static readonly string Mp3Audio = "./Resources/audio.mp3";
public static readonly string PngImage = "./Resources/cover.png";
public static readonly string ImageCollection = "./Resources/images";
2021-07-31 22:46:21 +02:00
public static readonly string SrtSubtitle = "./Resources/sample.srt";
2020-12-07 00:47:47 +01:00
}
}