You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
|
|
|
|
|
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 string[] DownloadUrls { get; set; }
|
|
|
|
|
|
|
|
|
|
public FFMpegInstallInfo()
|
|
|
|
|
{
|
|
|
|
|
DownloadUrls = new string[] { };
|
|
|
|
|
Version = "Path";
|
|
|
|
|
FFMpegFilename = "ffmpeg";
|
|
|
|
|
FFProbeFilename = "ffprobe";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|