mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-03-23 02:27:17 +00:00
update windows ffmpeg
This commit is contained in:
@@ -142,8 +142,6 @@
|
||||
<None Include="App.config" />
|
||||
<None Include="app.manifest" />
|
||||
<EmbeddedResource Include="Native\RegisterServer.bat" />
|
||||
<EmbeddedResource Include="ffmpeg\ffmpegx64.7z" />
|
||||
<EmbeddedResource Include="ffmpeg\ffmpegx86.7z" />
|
||||
<None Include="packages.config" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
|
||||
@@ -158,9 +158,9 @@ namespace MediaBrowser.ServerApplication.Native
|
||||
|
||||
info.FFMpegFilename = "ffmpeg.exe";
|
||||
info.FFProbeFilename = "ffprobe.exe";
|
||||
info.Version = "20160401";
|
||||
info.Version = "20160508";
|
||||
info.ArchiveType = "7z";
|
||||
info.IsEmbedded = true;
|
||||
info.IsEmbedded = false;
|
||||
info.DownloadUrls = GetDownloadUrls();
|
||||
|
||||
return info;
|
||||
@@ -212,11 +212,18 @@ namespace MediaBrowser.ServerApplication.Native
|
||||
switch (Environment.SystemArchitecture)
|
||||
{
|
||||
case Architecture.X86_X64:
|
||||
return new[] { "MediaBrowser.ServerApplication.ffmpeg.ffmpegx64.7z" };
|
||||
return new[]
|
||||
{
|
||||
"https://github.com/MediaBrowser/Emby.Resources/raw/master/ffmpeg/windows/ffmpeg-20160508-win64.7z",
|
||||
"https://ffmpeg.zeranoe.com/builds/win64/static/ffmpeg-20160508-git-caee88d-win64-static.7z"
|
||||
};
|
||||
case Architecture.X86:
|
||||
return new[] { "MediaBrowser.ServerApplication.ffmpeg.ffmpegx86.7z" };
|
||||
return new[]
|
||||
{
|
||||
"https://github.com/MediaBrowser/Emby.Resources/raw/master/ffmpeg/windows/ffmpeg-20160508-win32.7z",
|
||||
"https://ffmpeg.zeranoe.com/builds/win32/static/ffmpeg-20160508-git-caee88d-win32-static.7z"
|
||||
};
|
||||
}
|
||||
|
||||
return new string[] { };
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1 +0,0 @@
|
||||
9dc10b022537738edce7eb71aa8dd4adbfee2c7b
|
||||
@@ -1 +0,0 @@
|
||||
00fa1afa35fbd0a7e97ad7956e42ae17f6882f64
|
||||
Reference in New Issue
Block a user