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

241 lines
8.6 KiB
C#
Raw Normal View History

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