jellyfin/Emby.Server.Implementations/LiveTv/EmbyTV/EncodedRecorder.cs

330 lines
12 KiB
C#
Raw Normal View History

#pragma warning disable CS1591
using System;
2016-02-12 02:01:38 -05:00
using System.Collections.Generic;
using System.Diagnostics;
2016-02-12 02:01:38 -05:00
using System.Globalization;
using System.IO;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using MediaBrowser.Controller;
using MediaBrowser.Controller.Library;
2016-02-12 02:01:38 -05:00
using MediaBrowser.Controller.MediaEncoding;
using MediaBrowser.Model.Dto;
using MediaBrowser.Model.IO;
using MediaBrowser.Model.Serialization;
using Microsoft.Extensions.Logging;
2016-02-12 02:01:38 -05:00
2016-11-03 19:35:19 -04:00
namespace Emby.Server.Implementations.LiveTv.EmbyTV
2016-02-12 02:01:38 -05:00
{
public class EncodedRecorder : IRecorder
{
private readonly ILogger _logger;
private readonly IMediaEncoder _mediaEncoder;
private readonly IServerApplicationPaths _appPaths;
2020-08-31 16:20:19 -04:00
private readonly IJsonSerializer _json;
private readonly TaskCompletionSource<bool> _taskCompletionSource = new TaskCompletionSource<bool>();
2016-02-12 02:01:38 -05:00
private bool _hasExited;
2016-11-30 14:50:39 -05:00
private Stream _logFileStream;
2016-02-12 02:01:38 -05:00
private string _targetPath;
private Process _process;
2016-02-12 02:01:38 -05:00
2019-02-06 14:38:42 -05:00
public EncodedRecorder(
ILogger logger,
IMediaEncoder mediaEncoder,
IServerApplicationPaths appPaths,
2020-08-31 16:20:19 -04:00
IJsonSerializer json)
2016-02-12 02:01:38 -05:00
{
_logger = logger;
_mediaEncoder = mediaEncoder;
_appPaths = appPaths;
_json = json;
2016-09-08 02:41:49 -04:00
}
private static bool CopySubtitles => false;
2017-02-21 13:04:35 -05:00
2016-05-10 01:15:06 -04:00
public string GetOutputPath(MediaSourceInfo mediaSource, string targetFile)
{
2018-09-12 13:26:21 -04:00
return Path.ChangeExtension(targetFile, ".ts");
2016-05-10 01:15:06 -04:00
}
2017-05-15 15:45:39 -04:00
public async Task Record(IDirectStreamProvider directStreamProvider, MediaSourceInfo mediaSource, string targetFile, TimeSpan duration, Action onStarted, CancellationToken cancellationToken)
2016-02-12 02:01:38 -05:00
{
2018-09-12 13:26:21 -04:00
// The media source is infinite so we need to handle stopping ourselves
2020-08-31 16:20:19 -04:00
using var durationToken = new CancellationTokenSource(duration);
using var cancellationTokenSource = CancellationTokenSource.CreateLinkedTokenSource(cancellationToken, durationToken.Token);
2016-09-05 16:07:36 -04:00
2020-08-31 16:20:19 -04:00
await RecordFromFile(mediaSource, mediaSource.Path, targetFile, duration, onStarted, cancellationTokenSource.Token).ConfigureAwait(false);
_logger.LogInformation("Recording completed to file {0}", targetFile);
}
2016-09-29 08:55:49 -04:00
private Task RecordFromFile(MediaSourceInfo mediaSource, string inputFile, string targetFile, TimeSpan duration, Action onStarted, CancellationToken cancellationToken)
{
2016-02-12 02:01:38 -05:00
_targetPath = targetFile;
Directory.CreateDirectory(Path.GetDirectoryName(targetFile));
2016-02-12 02:01:38 -05:00
var processStartInfo = new ProcessStartInfo
2016-02-12 02:01:38 -05:00
{
2016-11-03 19:35:19 -04:00
CreateNoWindow = true,
2016-11-30 14:50:39 -05:00
UseShellExecute = false,
2016-02-12 02:01:38 -05:00
2016-11-30 14:50:39 -05:00
RedirectStandardError = true,
RedirectStandardInput = true,
2016-02-12 02:01:38 -05:00
2016-11-03 19:35:19 -04:00
FileName = _mediaEncoder.EncoderPath,
Arguments = GetCommandLineArgs(mediaSource, inputFile, targetFile, duration),
2016-02-12 02:01:38 -05:00
WindowStyle = ProcessWindowStyle.Hidden,
ErrorDialog = false
};
2016-02-12 02:01:38 -05:00
var commandLineLogMessage = processStartInfo.FileName + " " + processStartInfo.Arguments;
_logger.LogInformation(commandLineLogMessage);
2016-02-12 02:01:38 -05:00
2016-11-30 14:50:39 -05:00
var logFilePath = Path.Combine(_appPaths.LogDirectoryPath, "record-transcode-" + Guid.NewGuid() + ".txt");
Directory.CreateDirectory(Path.GetDirectoryName(logFilePath));
2016-02-12 02:01:38 -05:00
2016-11-30 14:50:39 -05:00
// FFMpeg writes debug/error info to stderr. This is useful when debugging so let's put it in the log directory.
2020-01-08 11:52:50 -05:00
_logFileStream = new FileStream(logFilePath, FileMode.Create, FileAccess.Write, FileShare.Read, IODefaults.FileStreamBufferSize, true);
2016-11-30 14:50:39 -05:00
var commandLineLogMessageBytes = Encoding.UTF8.GetBytes(_json.SerializeToString(mediaSource) + Environment.NewLine + Environment.NewLine + commandLineLogMessage + Environment.NewLine + Environment.NewLine);
_logFileStream.Write(commandLineLogMessageBytes, 0, commandLineLogMessageBytes.Length);
2016-02-12 02:01:38 -05:00
_process = new Process
{
StartInfo = processStartInfo,
EnableRaisingEvents = true
};
2020-08-31 16:20:19 -04:00
_process.Exited += (sender, args) => OnFfMpegProcessExited(_process);
2016-02-12 02:01:38 -05:00
_process.Start();
2016-02-12 02:01:38 -05:00
cancellationToken.Register(Stop);
2016-02-29 11:25:21 -05:00
onStarted();
2016-11-30 14:50:39 -05:00
// Important - don't await the log task or we won't be able to kill ffmpeg when the user stops playback
2020-05-25 17:52:51 -04:00
_ = StartStreamingLog(_process.StandardError.BaseStream, _logFileStream);
2016-11-30 14:50:39 -05:00
_logger.LogInformation("ffmpeg recording process started for {0}", _targetPath);
2016-09-30 14:43:59 -04:00
2016-06-22 00:40:11 -04:00
return _taskCompletionSource.Task;
2016-02-12 02:01:38 -05:00
}
2016-06-22 00:40:11 -04:00
private string GetCommandLineArgs(MediaSourceInfo mediaSource, string inputTempFile, string targetFile, TimeSpan duration)
2016-02-12 02:01:38 -05:00
{
string videoArgs;
if (EncodeVideo(mediaSource))
{
2019-08-29 16:28:33 -04:00
const int MaxBitrate = 25000000;
2016-02-12 02:01:38 -05:00
videoArgs = string.Format(
2019-08-29 16:28:33 -04:00
CultureInfo.InvariantCulture,
"-codec:v:0 libx264 -force_key_frames \"expr:gte(t,n_forced*5)\" {0} -pix_fmt yuv420p -preset superfast -crf 23 -b:v {1} -maxrate {1} -bufsize ({1}*2) -vsync -1 -profile:v high -level 41",
GetOutputSizeParam(),
MaxBitrate);
2016-02-12 02:01:38 -05:00
}
else
{
videoArgs = "-codec:v:0 copy";
}
2017-05-15 15:45:39 -04:00
videoArgs += " -fflags +genpts";
2017-05-02 08:53:21 -04:00
var flags = new List<string>();
if (mediaSource.IgnoreDts)
2017-04-21 16:03:07 -04:00
{
2017-05-02 08:53:21 -04:00
flags.Add("+igndts");
}
2019-08-29 16:28:33 -04:00
2017-05-02 08:53:21 -04:00
if (mediaSource.IgnoreIndex)
{
flags.Add("+ignidx");
2017-04-21 16:03:07 -04:00
}
2019-08-29 16:28:33 -04:00
2017-05-15 15:45:39 -04:00
if (mediaSource.GenPtsInput)
{
flags.Add("+genpts");
}
2017-04-21 16:03:07 -04:00
2017-05-21 03:25:49 -04:00
var inputModifier = "-async 1 -vsync -1";
2016-09-30 02:50:06 -04:00
2017-05-02 08:53:21 -04:00
if (flags.Count > 0)
{
2019-08-29 16:28:33 -04:00
inputModifier += " -fflags " + string.Join(string.Empty, flags);
2017-05-02 08:53:21 -04:00
}
2016-02-12 02:01:38 -05:00
2017-05-02 08:53:21 -04:00
if (mediaSource.ReadAtNativeFramerate)
2016-09-30 02:50:06 -04:00
{
2017-05-21 03:25:49 -04:00
inputModifier += " -re";
}
if (mediaSource.RequiresLooping)
{
2018-09-12 13:26:21 -04:00
inputModifier += " -stream_loop -1 -reconnect_at_eof 1 -reconnect_streamed 1 -reconnect_delay_max 2";
2016-02-12 02:01:38 -05:00
}
2016-11-09 12:25:33 -05:00
var analyzeDurationSeconds = 5;
var analyzeDuration = " -analyzeduration " +
(analyzeDurationSeconds * 1000000).ToString(CultureInfo.InvariantCulture);
2017-05-21 03:25:49 -04:00
inputModifier += analyzeDuration;
2016-11-09 12:25:33 -05:00
2017-02-21 13:04:35 -05:00
var subtitleArgs = CopySubtitles ? " -codec:s copy" : " -sn";
2020-06-14 05:11:11 -04:00
// var outputParam = string.Equals(Path.GetExtension(targetFile), ".mp4", StringComparison.OrdinalIgnoreCase) ?
// " -f mp4 -movflags frag_keyframe+empty_moov" :
// string.Empty;
var outputParam = string.Empty;
2017-03-26 00:22:30 -04:00
2019-08-29 16:28:33 -04:00
var commandLineArgs = string.Format(
CultureInfo.InvariantCulture,
"-i \"{0}\" {2} -map_metadata -1 -threads 0 {3}{4}{5} -y \"{1}\"",
2019-01-07 18:27:46 -05:00
inputTempFile,
targetFile,
videoArgs,
GetAudioArgs(mediaSource),
subtitleArgs,
2017-05-02 08:53:21 -04:00
outputParam);
2016-02-12 02:01:38 -05:00
2017-05-21 03:25:49 -04:00
return inputModifier + " " + commandLineArgs;
2016-02-12 02:01:38 -05:00
}
private static string GetAudioArgs(MediaSourceInfo mediaSource)
2016-02-12 02:01:38 -05:00
{
2018-09-12 13:26:21 -04:00
return "-codec:a:0 copy";
2016-02-12 02:01:38 -05:00
2020-06-14 05:11:11 -04:00
// var audioChannels = 2;
// var audioStream = mediaStreams.FirstOrDefault(i => i.Type == MediaStreamType.Audio);
// if (audioStream != null)
2018-09-12 13:26:21 -04:00
//{
// audioChannels = audioStream.Channels ?? audioChannels;
//}
2020-06-14 05:11:11 -04:00
// return "-codec:a:0 aac -strict experimental -ab 320000";
2016-02-12 02:01:38 -05:00
}
private static bool EncodeVideo(MediaSourceInfo mediaSource)
2016-02-12 02:01:38 -05:00
{
2018-09-12 13:26:21 -04:00
return false;
2016-02-12 02:01:38 -05:00
}
protected string GetOutputSizeParam()
2020-08-31 16:20:19 -04:00
=> "-vf \"yadif=0:-1:0\"";
2016-02-12 02:01:38 -05:00
private void Stop()
{
if (!_hasExited)
{
try
{
2018-12-20 07:11:26 -05:00
_logger.LogInformation("Stopping ffmpeg recording process for {path}", _targetPath);
2016-02-12 02:01:38 -05:00
2016-11-30 14:50:39 -05:00
_process.StandardInput.WriteLine("q");
2016-02-12 02:01:38 -05:00
}
catch (Exception ex)
{
2018-12-20 07:11:26 -05:00
_logger.LogError(ex, "Error stopping recording transcoding job for {path}", _targetPath);
2017-01-20 12:53:48 -05:00
}
if (_hasExited)
{
return;
}
try
{
2018-12-20 07:11:26 -05:00
_logger.LogInformation("Calling recording process.WaitForExit for {path}", _targetPath);
2017-01-20 12:53:48 -05:00
2017-02-17 16:11:13 -05:00
if (_process.WaitForExit(10000))
2017-01-20 12:53:48 -05:00
{
return;
}
}
catch (Exception ex)
{
2018-12-20 07:11:26 -05:00
_logger.LogError(ex, "Error waiting for recording process to exit for {path}", _targetPath);
2017-01-20 12:53:48 -05:00
}
if (_hasExited)
{
return;
}
try
{
2018-12-20 07:11:26 -05:00
_logger.LogInformation("Killing ffmpeg recording process for {path}", _targetPath);
2017-01-20 12:53:48 -05:00
_process.Kill();
}
catch (Exception ex)
{
2018-12-20 07:11:26 -05:00
_logger.LogError(ex, "Error killing recording transcoding job for {path}", _targetPath);
2016-02-12 02:01:38 -05:00
}
}
}
/// <summary>
/// Processes the exited.
/// </summary>
2020-08-31 16:20:19 -04:00
private void OnFfMpegProcessExited(Process process)
2016-02-12 02:01:38 -05:00
{
2020-04-11 13:46:31 -04:00
using (process)
{
_hasExited = true;
2016-02-12 02:01:38 -05:00
_logFileStream?.Dispose();
_logFileStream = null;
2016-11-30 14:50:39 -05:00
var exitCode = process.ExitCode;
2016-03-06 23:56:45 -05:00
_logger.LogInformation("FFMpeg recording exited with code {ExitCode} for {Path}", exitCode, _targetPath);
2016-03-06 23:56:45 -05:00
if (exitCode == 0)
{
_taskCompletionSource.TrySetResult(true);
}
else
{
_taskCompletionSource.TrySetException(
new Exception(
string.Format(
CultureInfo.InvariantCulture,
"Recording for {0} failed. Exit code {1}",
_targetPath,
exitCode)));
}
}
2016-11-30 14:50:39 -05:00
}
2020-05-25 17:52:51 -04:00
private async Task StartStreamingLog(Stream source, Stream target)
2016-11-30 14:50:39 -05:00
{
try
{
using (var reader = new StreamReader(source))
{
while (!reader.EndOfStream)
{
var line = await reader.ReadLineAsync().ConfigureAwait(false);
var bytes = Encoding.UTF8.GetBytes(Environment.NewLine + line);
await target.WriteAsync(bytes, 0, bytes.Length).ConfigureAwait(false);
await target.FlushAsync().ConfigureAwait(false);
}
}
}
catch (ObjectDisposedException)
{
// TODO Investigate and properly fix.
2016-11-30 14:50:39 -05:00
// Don't spam the log. This doesn't seem to throw in windows, but sometimes under linux
}
catch (Exception ex)
{
2018-12-20 07:11:26 -05:00
_logger.LogError(ex, "Error reading ffmpeg recording log");
2016-11-30 14:50:39 -05:00
}
}
2016-02-12 02:01:38 -05:00
}
}