2021-05-15 11:17:12 +02:00
|
|
|
|
namespace FFMpegCore.Test.Resources
|
2020-12-07 00:47:47 +01:00
|
|
|
|
{
|
|
|
|
|
public static class TestResources
|
|
|
|
|
{
|
|
|
|
|
public static readonly string Mp4Video = "./Resources/input_3sec.mp4";
|
2023-02-04 22:17:39 +01:00
|
|
|
|
public static readonly string Mp4VideoRotation = "./Resources/input_3sec_rotation_90deg.mp4";
|
2020-12-07 00:47:47 +01:00
|
|
|
|
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";
|
2023-02-01 08:09:16 +01:00
|
|
|
|
public static readonly string AiffAudio = "./Resources/sample3aiff.aiff";
|
|
|
|
|
public static readonly string MkvVideo = "./Resources/sampleMKV.mkv";
|
|
|
|
|
public static readonly string Wav24Bit = "./Resources/24_bit_fixed.WAV";
|
|
|
|
|
public static readonly string Wav32Bit = "./Resources/32_bit_float.WAV";
|
2020-12-07 00:47:47 +01:00
|
|
|
|
}
|
|
|
|
|
}
|