move classes to portable project

This commit is contained in:
Luke Pulverenti
2016-11-18 16:06:00 -05:00
parent c6f1bd93fc
commit e58e34ceca
11 changed files with 31 additions and 17 deletions

View File

@@ -0,0 +1,20 @@
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";
}
}
}