2013-10-12 20:39:22 -07:00
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.ServerApplication.FFMpeg
|
|
|
|
|
{
|
|
|
|
|
public static class FFMpegDownloadInfo
|
|
|
|
|
{
|
2013-12-09 20:33:49 -07:00
|
|
|
|
public static string Version = "ffmpeg20131209";
|
2013-10-12 20:39:22 -07:00
|
|
|
|
|
|
|
|
|
public static string[] FfMpegUrls = new[]
|
|
|
|
|
{
|
2013-12-09 20:33:49 -07:00
|
|
|
|
"http://ffmpeg.zeranoe.com/builds/win32/static/ffmpeg-20131209-git-a12f679-win32-static.7z",
|
|
|
|
|
"https://www.dropbox.com/s/d38uj7857trbw1g/ffmpeg-20131209-git-a12f679-win32-static.7z?dl=1"
|
2013-10-12 20:39:22 -07:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
public static string FFMpegFilename = "ffmpeg.exe";
|
|
|
|
|
public static string FFProbeFilename = "ffprobe.exe";
|
|
|
|
|
|
|
|
|
|
public static string ArchiveType = "7z";
|
|
|
|
|
}
|
|
|
|
|
}
|