jellyfin/Emby.Server.Implementations/FFMpeg/FFMpegLoader.cs

241 lines
8.6 KiB
C#
Raw Normal View History

2014-10-07 01:58:46 +02:00
using MediaBrowser.Common.Configuration;
using MediaBrowser.Common.Net;
2013-09-25 02:54:51 +02:00
using MediaBrowser.Model.IO;
using MediaBrowser.Model.Logging;
using System;
2014-10-07 01:58:46 +02:00
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
2016-11-18 22:06:00 +01:00
using Emby.Server.Implementations;
using Emby.Server.Implementations.FFMpeg;
2016-11-18 22:06:00 +01:00
namespace Emby.Server.Implementations.FFMpeg
{
2016-04-02 06:29:48 +02:00
public class FFMpegLoader
{
private readonly IHttpClient _httpClient;
private readonly IApplicationPaths _appPaths;
private readonly ILogger _logger;
2013-09-25 02:54:51 +02:00
private readonly IZipClient _zipClient;
private readonly IFileSystem _fileSystem;
2016-04-02 06:29:48 +02:00
private readonly FFMpegInstallInfo _ffmpegInstallInfo;
2016-11-11 08:24:36 +01:00
public FFMpegLoader(ILogger logger, IApplicationPaths appPaths, IHttpClient httpClient, IZipClient zipClient, IFileSystem fileSystem, FFMpegInstallInfo ffmpegInstallInfo)
{
_logger = logger;
_appPaths = appPaths;
_httpClient = httpClient;
2013-09-25 02:54:51 +02:00
_zipClient = zipClient;
_fileSystem = fileSystem;
2016-04-02 06:29:48 +02:00
_ffmpegInstallInfo = ffmpegInstallInfo;
}
2016-11-11 08:24:36 +01:00
public async Task<FFMpegInfo> GetFFMpegInfo(StartupOptions options, IProgress<double> progress)
{
2014-09-14 17:26:33 +02:00
var customffMpegPath = options.GetOption("-ffmpeg");
var customffProbePath = options.GetOption("-ffprobe");
if (!string.IsNullOrWhiteSpace(customffMpegPath) && !string.IsNullOrWhiteSpace(customffProbePath))
{
return new FFMpegInfo
{
ProbePath = customffProbePath,
EncoderPath = customffMpegPath,
2016-06-23 19:04:18 +02:00
Version = "external"
2014-09-14 17:26:33 +02:00
};
}
2016-04-02 06:29:48 +02:00
var downloadInfo = _ffmpegInstallInfo;
var version = downloadInfo.Version;
if (string.Equals(version, "path", StringComparison.OrdinalIgnoreCase))
{
return new FFMpegInfo
{
ProbePath = downloadInfo.FFProbeFilename,
EncoderPath = downloadInfo.FFMpegFilename,
Version = version
};
}
2016-06-30 03:19:38 +02:00
if (string.Equals(version, "0", StringComparison.OrdinalIgnoreCase))
{
return new FFMpegInfo();
}
2014-05-07 04:28:19 +02:00
var rootEncoderPath = Path.Combine(_appPaths.ProgramDataPath, "ffmpeg");
var versionedDirectoryPath = Path.Combine(rootEncoderPath, version);
var info = new FFMpegInfo
{
ProbePath = Path.Combine(versionedDirectoryPath, downloadInfo.FFProbeFilename),
EncoderPath = Path.Combine(versionedDirectoryPath, downloadInfo.FFMpegFilename),
Version = version
};
2016-04-02 06:16:18 +02:00
_fileSystem.CreateDirectory(versionedDirectoryPath);
2014-09-14 17:10:51 +02:00
var excludeFromDeletions = new List<string> { versionedDirectoryPath };
2016-04-02 06:16:18 +02:00
if (!_fileSystem.FileExists(info.ProbePath) || !_fileSystem.FileExists(info.EncoderPath))
{
2014-05-07 04:28:19 +02:00
// ffmpeg not present. See if there's an older version we can start with
var existingVersion = GetExistingVersion(info, rootEncoderPath);
2014-05-07 04:28:19 +02:00
// No older version. Need to download and block until complete
if (existingVersion == null)
{
2016-06-30 03:19:38 +02:00
var success = await DownloadFFMpeg(downloadInfo, versionedDirectoryPath, progress).ConfigureAwait(false);
if (!success)
{
return new FFMpegInfo();
}
2014-05-07 04:28:19 +02:00
}
else
{
info = existingVersion;
versionedDirectoryPath = Path.GetDirectoryName(info.EncoderPath);
2014-09-14 17:10:51 +02:00
excludeFromDeletions.Add(versionedDirectoryPath);
2014-05-07 04:28:19 +02:00
}
}
// Allow just one of these to be overridden, if desired.
if (!string.IsNullOrWhiteSpace(customffMpegPath))
{
info.EncoderPath = customffMpegPath;
}
if (!string.IsNullOrWhiteSpace(customffProbePath))
{
info.EncoderPath = customffProbePath;
}
2014-05-07 04:28:19 +02:00
return info;
}
private FFMpegInfo GetExistingVersion(FFMpegInfo info, string rootEncoderPath)
{
var encoderFilename = Path.GetFileName(info.EncoderPath);
var probeFilename = Path.GetFileName(info.ProbePath);
2016-11-18 22:06:00 +01:00
foreach (var directory in _fileSystem.GetDirectoryPaths(rootEncoderPath)
2014-05-07 04:28:19 +02:00
.ToList())
{
2016-11-18 22:06:00 +01:00
var allFiles = _fileSystem.GetFilePaths(directory, true).ToList();
2014-05-07 04:28:19 +02:00
var encoder = allFiles.FirstOrDefault(i => string.Equals(Path.GetFileName(i), encoderFilename, StringComparison.OrdinalIgnoreCase));
var probe = allFiles.FirstOrDefault(i => string.Equals(Path.GetFileName(i), probeFilename, StringComparison.OrdinalIgnoreCase));
if (!string.IsNullOrWhiteSpace(encoder) &&
!string.IsNullOrWhiteSpace(probe))
{
2014-05-07 04:28:19 +02:00
return new FFMpegInfo
{
2015-02-11 21:23:07 +01:00
EncoderPath = encoder,
ProbePath = probe,
Version = Path.GetFileName(Path.GetDirectoryName(probe))
2014-05-07 04:28:19 +02:00
};
}
2014-05-07 04:28:19 +02:00
}
2013-09-23 19:27:38 +02:00
2014-05-07 04:28:19 +02:00
return null;
}
2016-06-30 03:19:38 +02:00
private async Task<bool> DownloadFFMpeg(FFMpegInstallInfo downloadinfo, string directory, IProgress<double> progress)
{
foreach (var url in downloadinfo.DownloadUrls)
{
progress.Report(0);
try
{
var tempFile = await _httpClient.GetTempFile(new HttpRequestOptions
{
Url = url,
CancellationToken = CancellationToken.None,
Progress = progress
}).ConfigureAwait(false);
ExtractFFMpeg(downloadinfo, tempFile, directory);
2016-06-30 03:19:38 +02:00
return true;
}
2014-01-21 07:10:58 +01:00
catch (Exception ex)
{
2014-07-30 05:31:35 +02:00
_logger.ErrorException("Error downloading {0}", ex, url);
}
}
2016-06-30 03:19:38 +02:00
return false;
}
2016-04-02 06:29:48 +02:00
private void ExtractFFMpeg(FFMpegInstallInfo downloadinfo, string tempFile, string targetFolder)
{
2014-05-07 04:28:19 +02:00
_logger.Info("Extracting ffmpeg from {0}", tempFile);
var tempFolder = Path.Combine(_appPaths.TempDirectory, Guid.NewGuid().ToString());
2016-04-02 06:16:18 +02:00
_fileSystem.CreateDirectory(tempFolder);
try
{
ExtractArchive(downloadinfo, tempFile, tempFolder);
2013-10-13 05:39:22 +02:00
2016-11-18 22:06:00 +01:00
var files = _fileSystem.GetFilePaths(tempFolder, true)
2015-02-11 21:23:07 +01:00
.ToList();
2013-10-13 05:39:22 +02:00
foreach (var file in files.Where(i =>
{
var filename = Path.GetFileName(i);
2013-10-13 05:39:22 +02:00
return
string.Equals(filename, downloadinfo.FFProbeFilename, StringComparison.OrdinalIgnoreCase) ||
string.Equals(filename, downloadinfo.FFMpegFilename, StringComparison.OrdinalIgnoreCase);
2013-10-13 05:39:22 +02:00
}))
{
2015-01-25 22:04:29 +01:00
var targetFile = Path.Combine(targetFolder, Path.GetFileName(file));
2016-04-02 06:16:18 +02:00
_fileSystem.CopyFile(file, targetFile, true);
2015-01-25 22:04:29 +01:00
SetFilePermissions(targetFile);
}
}
finally
{
DeleteFile(tempFile);
}
}
2015-01-25 22:04:29 +01:00
private void SetFilePermissions(string path)
2014-10-07 01:58:46 +02:00
{
2016-11-11 08:24:36 +01:00
_fileSystem.SetExecutable(path);
2014-10-07 01:58:46 +02:00
}
2016-04-02 06:29:48 +02:00
private void ExtractArchive(FFMpegInstallInfo downloadinfo, string archivePath, string targetPath)
{
2014-05-07 04:28:19 +02:00
_logger.Info("Extracting {0} to {1}", archivePath, targetPath);
if (string.Equals(downloadinfo.ArchiveType, "7z", StringComparison.OrdinalIgnoreCase))
2013-10-13 05:39:22 +02:00
{
_zipClient.ExtractAllFrom7z(archivePath, targetPath, true);
}
else if (string.Equals(downloadinfo.ArchiveType, "gz", StringComparison.OrdinalIgnoreCase))
2013-10-13 05:39:22 +02:00
{
_zipClient.ExtractAllFromTar(archivePath, targetPath, true);
}
}
private void DeleteFile(string path)
{
try
{
_fileSystem.DeleteFile(path);
}
catch (IOException ex)
{
_logger.ErrorException("Error deleting temp file {0}", ex, path);
}
}
}
}