123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328 |
- #nullable disable
- #pragma warning disable CS1591
- using System;
- using System.Collections.Generic;
- using System.Diagnostics;
- using System.Globalization;
- using System.IO;
- using System.Text;
- using System.Text.Json;
- using System.Threading;
- using System.Threading.Tasks;
- using Jellyfin.Extensions;
- using Jellyfin.Extensions.Json;
- using MediaBrowser.Common.Configuration;
- using MediaBrowser.Controller;
- using MediaBrowser.Controller.Configuration;
- using MediaBrowser.Controller.Library;
- using MediaBrowser.Controller.MediaEncoding;
- using MediaBrowser.Model.Dto;
- using MediaBrowser.Model.IO;
- using Microsoft.Extensions.Logging;
- namespace Emby.Server.Implementations.LiveTv.EmbyTV
- {
- public class EncodedRecorder : IRecorder
- {
- private readonly ILogger _logger;
- private readonly IMediaEncoder _mediaEncoder;
- private readonly IServerApplicationPaths _appPaths;
- private readonly TaskCompletionSource<bool> _taskCompletionSource = new TaskCompletionSource<bool>();
- private readonly IServerConfigurationManager _serverConfigurationManager;
- private readonly JsonSerializerOptions _jsonOptions = JsonDefaults.Options;
- private bool _hasExited;
- private Stream _logFileStream;
- private string _targetPath;
- private Process _process;
- public EncodedRecorder(
- ILogger logger,
- IMediaEncoder mediaEncoder,
- IServerApplicationPaths appPaths,
- IServerConfigurationManager serverConfigurationManager)
- {
- _logger = logger;
- _mediaEncoder = mediaEncoder;
- _appPaths = appPaths;
- _serverConfigurationManager = serverConfigurationManager;
- }
- private static bool CopySubtitles => false;
- public string GetOutputPath(MediaSourceInfo mediaSource, string targetFile)
- {
- return Path.ChangeExtension(targetFile, ".ts");
- }
- public async Task Record(IDirectStreamProvider directStreamProvider, MediaSourceInfo mediaSource, string targetFile, TimeSpan duration, Action onStarted, CancellationToken cancellationToken)
- {
- // The media source is infinite so we need to handle stopping ourselves
- using var durationToken = new CancellationTokenSource(duration);
- using var cancellationTokenSource = CancellationTokenSource.CreateLinkedTokenSource(cancellationToken, durationToken.Token);
- await RecordFromFile(mediaSource, mediaSource.Path, targetFile, duration, onStarted, cancellationTokenSource.Token).ConfigureAwait(false);
- _logger.LogInformation("Recording completed to file {0}", targetFile);
- }
- private async Task RecordFromFile(MediaSourceInfo mediaSource, string inputFile, string targetFile, TimeSpan duration, Action onStarted, CancellationToken cancellationToken)
- {
- _targetPath = targetFile;
- Directory.CreateDirectory(Path.GetDirectoryName(targetFile));
- var processStartInfo = new ProcessStartInfo
- {
- CreateNoWindow = true,
- UseShellExecute = false,
- RedirectStandardError = true,
- RedirectStandardInput = true,
- FileName = _mediaEncoder.EncoderPath,
- Arguments = GetCommandLineArgs(mediaSource, inputFile, targetFile, duration),
- WindowStyle = ProcessWindowStyle.Hidden,
- ErrorDialog = false
- };
- var commandLineLogMessage = processStartInfo.FileName + " " + processStartInfo.Arguments;
- _logger.LogInformation(commandLineLogMessage);
- var logFilePath = Path.Combine(_appPaths.LogDirectoryPath, "record-transcode-" + Guid.NewGuid() + ".txt");
- Directory.CreateDirectory(Path.GetDirectoryName(logFilePath));
- // FFMpeg writes debug/error info to stderr. This is useful when debugging so let's put it in the log directory.
- _logFileStream = new FileStream(logFilePath, FileMode.Create, FileAccess.Write, FileShare.Read, IODefaults.FileStreamBufferSize, true);
- await JsonSerializer.SerializeAsync(_logFileStream, mediaSource, _jsonOptions, cancellationToken).ConfigureAwait(false);
- await _logFileStream.WriteAsync(Encoding.UTF8.GetBytes(Environment.NewLine + Environment.NewLine + commandLineLogMessage + Environment.NewLine + Environment.NewLine), cancellationToken).ConfigureAwait(false);
- _process = new Process
- {
- StartInfo = processStartInfo,
- EnableRaisingEvents = true
- };
- _process.Exited += (sender, args) => OnFfMpegProcessExited(_process);
- _process.Start();
- cancellationToken.Register(Stop);
- onStarted();
- // Important - don't await the log task or we won't be able to kill ffmpeg when the user stops playback
- _ = StartStreamingLog(_process.StandardError.BaseStream, _logFileStream);
- _logger.LogInformation("ffmpeg recording process started for {0}", _targetPath);
- }
- private string GetCommandLineArgs(MediaSourceInfo mediaSource, string inputTempFile, string targetFile, TimeSpan duration)
- {
- string videoArgs;
- if (EncodeVideo(mediaSource))
- {
- const int MaxBitrate = 25000000;
- videoArgs = string.Format(
- 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);
- }
- else
- {
- videoArgs = "-codec:v:0 copy";
- }
- videoArgs += " -fflags +genpts";
- var flags = new List<string>();
- if (mediaSource.IgnoreDts)
- {
- flags.Add("+igndts");
- }
- if (mediaSource.IgnoreIndex)
- {
- flags.Add("+ignidx");
- }
- if (mediaSource.GenPtsInput)
- {
- flags.Add("+genpts");
- }
- var inputModifier = "-async 1 -vsync -1";
- if (flags.Count > 0)
- {
- inputModifier += " -fflags " + string.Join(string.Empty, flags);
- }
- if (mediaSource.ReadAtNativeFramerate)
- {
- inputModifier += " -re";
- }
- if (mediaSource.RequiresLooping)
- {
- inputModifier += " -stream_loop -1 -reconnect_at_eof 1 -reconnect_streamed 1 -reconnect_delay_max 2";
- }
- var analyzeDurationSeconds = 5;
- var analyzeDuration = " -analyzeduration " +
- (analyzeDurationSeconds * 1000000).ToString(CultureInfo.InvariantCulture);
- inputModifier += analyzeDuration;
- var subtitleArgs = CopySubtitles ? " -codec:s copy" : " -sn";
- // var outputParam = string.Equals(Path.GetExtension(targetFile), ".mp4", StringComparison.OrdinalIgnoreCase) ?
- // " -f mp4 -movflags frag_keyframe+empty_moov" :
- // string.Empty;
- var outputParam = string.Empty;
- var threads = EncodingHelper.GetNumberOfThreads(null, _serverConfigurationManager.GetEncodingOptions(), null);
- var commandLineArgs = string.Format(
- CultureInfo.InvariantCulture,
- "-i \"{0}\" {2} -map_metadata -1 -threads {6} {3}{4}{5} -y \"{1}\"",
- inputTempFile,
- targetFile,
- videoArgs,
- GetAudioArgs(mediaSource),
- subtitleArgs,
- outputParam,
- threads);
- return inputModifier + " " + commandLineArgs;
- }
- private static string GetAudioArgs(MediaSourceInfo mediaSource)
- {
- return "-codec:a:0 copy";
- // var audioChannels = 2;
- // var audioStream = mediaStreams.FirstOrDefault(i => i.Type == MediaStreamType.Audio);
- // if (audioStream != null)
- //{
- // audioChannels = audioStream.Channels ?? audioChannels;
- //}
- // return "-codec:a:0 aac -strict experimental -ab 320000";
- }
- private static bool EncodeVideo(MediaSourceInfo mediaSource)
- {
- return false;
- }
- protected string GetOutputSizeParam()
- => "-vf \"yadif=0:-1:0\"";
- private void Stop()
- {
- if (!_hasExited)
- {
- try
- {
- _logger.LogInformation("Stopping ffmpeg recording process for {path}", _targetPath);
- _process.StandardInput.WriteLine("q");
- }
- catch (Exception ex)
- {
- _logger.LogError(ex, "Error stopping recording transcoding job for {path}", _targetPath);
- }
- if (_hasExited)
- {
- return;
- }
- try
- {
- _logger.LogInformation("Calling recording process.WaitForExit for {path}", _targetPath);
- if (_process.WaitForExit(10000))
- {
- return;
- }
- }
- catch (Exception ex)
- {
- _logger.LogError(ex, "Error waiting for recording process to exit for {path}", _targetPath);
- }
- if (_hasExited)
- {
- return;
- }
- try
- {
- _logger.LogInformation("Killing ffmpeg recording process for {path}", _targetPath);
- _process.Kill();
- }
- catch (Exception ex)
- {
- _logger.LogError(ex, "Error killing recording transcoding job for {path}", _targetPath);
- }
- }
- }
- /// <summary>
- /// Processes the exited.
- /// </summary>
- private void OnFfMpegProcessExited(Process process)
- {
- using (process)
- {
- _hasExited = true;
- _logFileStream?.Dispose();
- _logFileStream = null;
- var exitCode = process.ExitCode;
- _logger.LogInformation("FFMpeg recording exited with code {ExitCode} for {Path}", exitCode, _targetPath);
- if (exitCode == 0)
- {
- _taskCompletionSource.TrySetResult(true);
- }
- else
- {
- _taskCompletionSource.TrySetException(
- new Exception(
- string.Format(
- CultureInfo.InvariantCulture,
- "Recording for {0} failed. Exit code {1}",
- _targetPath,
- exitCode)));
- }
- }
- }
- private async Task StartStreamingLog(Stream source, Stream target)
- {
- try
- {
- using (var reader = new StreamReader(source))
- {
- await foreach (var line in reader.ReadAllLinesAsync().ConfigureAwait(false))
- {
- var bytes = Encoding.UTF8.GetBytes(Environment.NewLine + line);
- await target.WriteAsync(bytes.AsMemory()).ConfigureAwait(false);
- await target.FlushAsync().ConfigureAwait(false);
- }
- }
- }
- catch (Exception ex)
- {
- _logger.LogError(ex, "Error reading ffmpeg recording log");
- }
- }
- }
- }
|