blob: b59f5bd17001685ddaae1dd10bbe52f59c5d5a11 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
namespace MediaBrowser.ServerApplication.FFMpeg
{
public static class FFMpegDownloadInfo
{
public static string Version = "ffmpeg20131011";
public static string[] FfMpegUrls = new[]
{
"https://github.com/MediaBrowser/MediaBrowser.Resources/raw/master/ffmpeg/windows/ffmpeg-20131011-git-024bf3a-win32-static.7z",
"http://ffmpeg.zeranoe.com/builds/win32/static/ffmpeg-20131011-git-024bf3a-win32-static.7z",
"https://www.dropbox.com/s/u4q74t1wyn9wlqc/ffmpeg-20131011-git-024bf3a-win32-static.7z?dl=1"
};
public static string FFMpegFilename = "ffmpeg.exe";
public static string FFProbeFilename = "ffprobe.exe";
public static string ArchiveType = "7z";
}
}
|