aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/FFMpeg/FFMpegInstallInfo.cs
blob: fa9cb5e01b19824993d13a1c14f6b731f9b15dc0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
namespace Emby.Server.Implementations.FFMpeg
{
    public class FFMpegInstallInfo
    {
        public string Version { get; set; }
        public string FFMpegFilename { get; set; }
        public string FFProbeFilename { get; set; }
        public string ArchiveType { get; set; }

        public FFMpegInstallInfo()
        {
            Version = "Path";
            FFMpegFilename = "ffmpeg";
            FFProbeFilename = "ffprobe";
        }
    }
}