jellyfin-server/MediaBrowser.ServerApplication/FFMpeg/FFMpegDownloadInfo.cs

22 lines
804 B
C#
Raw Normal View History

2013-10-13 03:39:22 +00:00

namespace MediaBrowser.ServerApplication.FFMpeg
{
public static class FFMpegDownloadInfo
{
2013-10-13 15:16:12 +00:00
public static string Version = "ffmpeg20131011";
2013-10-13 03:39:22 +00:00
public static string[] FfMpegUrls = new[]
{
2013-10-13 15:16:12 +00:00
"https://github.com/MediaBrowser/MediaBrowser.Resources/raw/master/ffmpeg/windows/ffmpeg-20131011-git-024bf3a-win32-static.7z",
2013-10-13 03:39:22 +00:00
2013-10-13 15:16:12 +00:00
"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"
2013-10-13 03:39:22 +00:00
};
public static string FFMpegFilename = "ffmpeg.exe";
public static string FFProbeFilename = "ffprobe.exe";
public static string ArchiveType = "7z";
}
}