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

19 lines
596 B
C#
Raw Normal View History

using System;
2016-02-12 00:01:38 -07:00
using System.Threading;
using System.Threading.Tasks;
2017-05-15 12:45:39 -07:00
using MediaBrowser.Controller.Library;
2016-02-12 00:01:38 -07:00
using MediaBrowser.Model.Dto;
2016-11-03 16:35:19 -07:00
namespace Emby.Server.Implementations.LiveTv.EmbyTV
2016-02-12 00:01:38 -07:00
{
public interface IRecorder
{
2016-02-29 21:24:42 -07:00
/// <summary>
/// Records the specified media source.
/// </summary>
2017-05-15 12:45:39 -07:00
Task Record(IDirectStreamProvider directStreamProvider, MediaSourceInfo mediaSource, string targetFile, TimeSpan duration, Action onStarted, CancellationToken cancellationToken);
2016-05-09 22:15:06 -07:00
string GetOutputPath(MediaSourceInfo mediaSource, string targetFile);
2016-02-12 00:01:38 -07:00
}
}