jellyfin/MediaBrowser.Server.Startup.Common/FFMpeg/FFmpegValidator.cs

165 lines
4.6 KiB
C#
Raw Normal View History

2014-11-15 03:31:03 +01:00
using MediaBrowser.Common.Configuration;
using MediaBrowser.Model.Logging;
using System;
using System.Diagnostics;
using System.IO;
using System.Collections.Generic;
2015-10-04 06:23:11 +02:00
using CommonIO;
2014-11-15 03:31:03 +01:00
namespace MediaBrowser.Server.Startup.Common.FFMpeg
{
public class FFmpegValidator
{
private readonly ILogger _logger;
private readonly IApplicationPaths _appPaths;
2015-09-14 01:07:54 +02:00
private readonly IFileSystem _fileSystem;
2014-11-15 03:31:03 +01:00
2015-09-14 01:07:54 +02:00
public FFmpegValidator(ILogger logger, IApplicationPaths appPaths, IFileSystem fileSystem)
2014-11-15 03:31:03 +01:00
{
_logger = logger;
_appPaths = appPaths;
2015-09-14 01:07:54 +02:00
_fileSystem = fileSystem;
2014-11-15 03:31:03 +01:00
}
public Tuple<List<string>,List<string>> Validate(FFMpegInfo info)
2014-11-15 03:31:03 +01:00
{
_logger.Info("FFMpeg: {0}", info.EncoderPath);
_logger.Info("FFProbe: {0}", info.ProbePath);
var decoders = GetDecoders(info.EncoderPath);
var encoders = GetEncoders(info.EncoderPath);
2014-11-29 03:40:46 +01:00
return new Tuple<List<string>, List<string>>(decoders, encoders);
2014-11-18 03:48:22 +01:00
}
private List<string> GetDecoders(string ffmpegPath)
2014-11-18 03:48:22 +01:00
{
string output = string.Empty;
2014-11-18 03:48:22 +01:00
try
{
output = GetFFMpegOutput(ffmpegPath, "-decoders");
2014-11-18 03:48:22 +01:00
}
catch
2014-11-15 03:31:03 +01:00
{
}
//_logger.Debug("ffmpeg decoder query result: {0}", output ?? string.Empty);
2014-11-18 03:48:22 +01:00
var found = new List<string>();
var required = new[]
2014-11-18 03:48:22 +01:00
{
"h264_qsv",
"mpeg2_qsv",
"vc1_qsv"
};
foreach (var codec in required)
{
var srch = " " + codec + " ";
2014-11-18 03:48:22 +01:00
if (output.IndexOf(srch, StringComparison.OrdinalIgnoreCase) == -1)
2014-11-18 03:48:22 +01:00
{
_logger.Warn("ffmpeg is missing decoder " + codec);
2014-11-18 03:48:22 +01:00
}
else
2014-11-18 03:48:22 +01:00
{
found.Add(codec);
2014-11-18 03:48:22 +01:00
}
}
return found;
2014-11-15 03:31:03 +01:00
}
private List<string> GetEncoders(string ffmpegPath)
2014-11-15 03:31:03 +01:00
{
string output = null;
try
{
output = GetFFMpegOutput(ffmpegPath, "-encoders");
}
catch
{
}
//_logger.Debug("ffmpeg encoder query result: {0}", output ?? string.Empty);
var found = new List<string>();
2014-11-15 03:31:03 +01:00
var required = new[]
{
"libx264",
2015-01-11 04:06:16 +01:00
"libx265",
2014-11-15 03:31:03 +01:00
"mpeg4",
"msmpeg4",
2015-12-21 17:41:32 +01:00
//"libvpx",
2014-11-15 03:31:03 +01:00
//"libvpx-vp9",
"aac",
"libmp3lame",
"libopus",
2015-12-21 17:41:32 +01:00
//"libvorbis",
2014-11-15 03:31:03 +01:00
"srt"
};
foreach (var codec in required)
2014-11-15 03:31:03 +01:00
{
var srch = " " + codec + " ";
2014-11-15 03:31:03 +01:00
if (output.IndexOf(srch, StringComparison.OrdinalIgnoreCase) == -1)
{
_logger.Warn("ffmpeg is missing encoder " + codec);
}
else
{
found.Add(codec);
2014-11-15 03:31:03 +01:00
}
}
return found;
2014-11-15 03:31:03 +01:00
}
2014-11-18 03:48:22 +01:00
private string GetFFMpegOutput(string path, string arguments)
2014-11-15 03:31:03 +01:00
{
var process = new Process
{
StartInfo = new ProcessStartInfo
{
CreateNoWindow = true,
UseShellExecute = false,
FileName = path,
Arguments = arguments,
WindowStyle = ProcessWindowStyle.Hidden,
ErrorDialog = false,
RedirectStandardOutput = true,
RedirectStandardError = true
}
};
using (process)
{
process.Start();
try
{
process.BeginErrorReadLine();
using (var reader = new StreamReader(process.StandardOutput.BaseStream))
{
return reader.ReadToEnd();
}
}
catch
{
// Hate having to do this
try
{
process.Kill();
}
catch (Exception ex1)
{
_logger.ErrorException("Error killing ffmpeg", ex1);
}
throw;
}
}
}
}
}