mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
fix typo
This commit is contained in:
parent
1c6dfd6984
commit
f4781b0bae
@ -209,7 +209,7 @@ namespace MediaBrowser.Model.ApiClient
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="query">The query.</param>
|
/// <param name="query">The query.</param>
|
||||||
/// <returns>Task<QueryResult<BaseItemDto>>.</returns>
|
/// <returns>Task<QueryResult<BaseItemDto>>.</returns>
|
||||||
Task<QueryResult<BaseItemDto>> GetLatestItems(LatestItemsQuery query);
|
Task<BaseItemDto[]> GetLatestItems(LatestItemsQuery query);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets the intros async.
|
/// Gets the intros async.
|
||||||
|
@ -49,6 +49,21 @@ namespace MediaBrowser.ServerApplication.FFMpeg
|
|||||||
if (PlatformDetection.IsMac)
|
if (PlatformDetection.IsMac)
|
||||||
{
|
{
|
||||||
if (PlatformDetection.IsX86_64)
|
if (PlatformDetection.IsX86_64)
|
||||||
|
{
|
||||||
|
switch (arg)
|
||||||
|
{
|
||||||
|
case "Version":
|
||||||
|
return "20140827";
|
||||||
|
case "FFMpegFilename":
|
||||||
|
return "ffmpeg";
|
||||||
|
case "FFProbeFilename":
|
||||||
|
return "ffprobe";
|
||||||
|
case "ArchiveType":
|
||||||
|
return "gz";
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
if (PlatformDetection.IsX86)
|
||||||
{
|
{
|
||||||
switch (arg)
|
switch (arg)
|
||||||
{
|
{
|
||||||
@ -116,14 +131,14 @@ namespace MediaBrowser.ServerApplication.FFMpeg
|
|||||||
return new[]
|
return new[]
|
||||||
{
|
{
|
||||||
"http://ffmpeg.zeranoe.com/builds/win64/static/ffmpeg-20140827-git-9e8ab36-win64-static.7z",
|
"http://ffmpeg.zeranoe.com/builds/win64/static/ffmpeg-20140827-git-9e8ab36-win64-static.7z",
|
||||||
"https://github.com/MediaBrowser/MediaBrowser.Resources/raw/master/ffmpeg/windows/ffmpeg-20140612-git-3a1c895-win32-static.7z"
|
"https://github.com/MediaBrowser/MediaBrowser.Resources/raw/master/ffmpeg/windows/ffmpeg-20140827-git-9e8ab36-win64-static.7z"
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
return new[]
|
return new[]
|
||||||
{
|
{
|
||||||
"http://ffmpeg.zeranoe.com/builds/win32/static/ffmpeg-20140827-git-9e8ab36-win32-static.7z",
|
"http://ffmpeg.zeranoe.com/builds/win32/static/ffmpeg-20140827-git-9e8ab36-win32-static.7z",
|
||||||
"https://github.com/MediaBrowser/MediaBrowser.Resources/raw/master/ffmpeg/windows/ffmpeg-20140612-git-3a1c895-win32-static.7z"
|
"https://github.com/MediaBrowser/MediaBrowser.Resources/raw/master/ffmpeg/windows/ffmpeg-20140827-git-9e8ab36-win32-static.7z"
|
||||||
};
|
};
|
||||||
|
|
||||||
case PlatformID.Unix:
|
case PlatformID.Unix:
|
||||||
@ -139,7 +154,7 @@ namespace MediaBrowser.ServerApplication.FFMpeg
|
|||||||
{
|
{
|
||||||
return new[]
|
return new[]
|
||||||
{
|
{
|
||||||
"https://github.com/MediaBrowser/MediaBrowser.Resources/raw/master/ffmpeg/osx/ffprobe-x64-2.2.4.7z"
|
"https://github.com/MediaBrowser/MediaBrowser.Resources/raw/master/ffmpeg/osx/ffmpeg-x64-2.3.3.7z"
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user