Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/blame/commit/5df87b3e0da0ef3010ec9929939ef3084bff42be/Emby.Server.Implementations/LiveTv/EmbyTV/IRecorder.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.

21 lines
628 B

#pragma warning disable CS1591
using System;
using System.Threading;
using System.Threading.Tasks;
8 years ago
using MediaBrowser.Controller.Library;
using MediaBrowser.Model.Dto;
namespace Emby.Server.Implementations.LiveTv.EmbyTV
{
public interface IRecorder
{
/// <summary>
/// Records the specified media source.
/// </summary>
8 years ago
Task Record(IDirectStreamProvider directStreamProvider, MediaSourceInfo mediaSource, string targetFile, TimeSpan duration, Action onStarted, CancellationToken cancellationToken);
string GetOutputPath(MediaSourceInfo mediaSource, string targetFile);
}
}