2014-01-01 18:26:31 +00:00
|
|
|
|
using MediaBrowser.Controller.Entities;
|
2014-01-28 18:37:01 +00:00
|
|
|
|
using MediaBrowser.Controller.Providers;
|
2014-03-30 16:49:40 +00:00
|
|
|
|
using MediaBrowser.Model.Library;
|
2014-01-01 18:26:31 +00:00
|
|
|
|
using System.Threading;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.LiveTv
|
|
|
|
|
{
|
2014-06-11 19:31:33 +00:00
|
|
|
|
public interface ILiveTvRecording : IHasImages, IHasMediaSources
|
2014-01-01 18:26:31 +00:00
|
|
|
|
{
|
|
|
|
|
string ServiceName { get; set; }
|
|
|
|
|
|
|
|
|
|
string MediaType { get; }
|
|
|
|
|
|
2014-04-27 18:09:16 +00:00
|
|
|
|
string Container { get; }
|
|
|
|
|
|
2014-01-01 18:26:31 +00:00
|
|
|
|
RecordingInfo RecordingInfo { get; set; }
|
|
|
|
|
|
2014-03-30 16:49:40 +00:00
|
|
|
|
long? RunTimeTicks { get; set; }
|
|
|
|
|
|
2014-01-01 18:26:31 +00:00
|
|
|
|
string GetClientTypeName();
|
|
|
|
|
|
|
|
|
|
string GetUserDataKey();
|
|
|
|
|
|
|
|
|
|
bool IsParentalAllowed(User user);
|
|
|
|
|
|
2014-02-06 04:39:16 +00:00
|
|
|
|
Task RefreshMetadata(MetadataRefreshOptions options, CancellationToken cancellationToken);
|
2014-02-23 05:52:30 +00:00
|
|
|
|
|
|
|
|
|
PlayAccess GetPlayAccess(User user);
|
2014-01-01 18:26:31 +00:00
|
|
|
|
}
|
|
|
|
|
}
|