2013-10-12 23:39:22 -04:00
|
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.ServerApplication.FFMpeg
|
|
|
|
|
|
{
|
|
|
|
|
|
public static class FFMpegDownloadInfo
|
|
|
|
|
|
{
|
2013-12-05 22:39:44 -05:00
|
|
|
|
public static string Version = "ffmpeg20131110.1";
|
2013-10-12 23:39:22 -04:00
|
|
|
|
|
|
|
|
|
|
public static string[] FfMpegUrls = new[]
|
|
|
|
|
|
{
|
2013-11-11 10:28:12 -05:00
|
|
|
|
"https://github.com/MediaBrowser/MediaBrowser.Resources/raw/master/ffmpeg/windows/ffmpeg-20131110-git-8cdf4e0-win32-static.7z",
|
2013-10-12 23:39:22 -04:00
|
|
|
|
|
2013-11-11 10:28:12 -05:00
|
|
|
|
"http://ffmpeg.zeranoe.com/builds/win32/static/ffmpeg-20131110-git-8cdf4e0-win32-static.7z",
|
|
|
|
|
|
"https://www.dropbox.com/s/5clspc636v9hie6/ffmpeg-20131110-git-8cdf4e0-win32-static.7z?dl=1"
|
2013-10-12 23:39:22 -04:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
public static string FFMpegFilename = "ffmpeg.exe";
|
|
|
|
|
|
public static string FFProbeFilename = "ffprobe.exe";
|
|
|
|
|
|
|
|
|
|
|
|
public static string ArchiveType = "7z";
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|