2020-04-05 09:10:56 -07:00
|
|
|
#nullable disable
|
2020-02-03 17:49:27 -07:00
|
|
|
#pragma warning disable CS1591
|
|
|
|
|
2019-01-13 13:02:23 -07:00
|
|
|
using System;
|
2018-12-27 16:27:57 -07:00
|
|
|
|
|
|
|
namespace MediaBrowser.Model.LiveTv
|
|
|
|
{
|
|
|
|
public class LiveTvOptions
|
|
|
|
{
|
2021-02-20 15:13:04 -07:00
|
|
|
public LiveTvOptions()
|
|
|
|
{
|
|
|
|
TunerHosts = Array.Empty<TunerHostInfo>();
|
|
|
|
ListingProviders = Array.Empty<ListingsProviderInfo>();
|
|
|
|
MediaLocationsCreated = Array.Empty<string>();
|
|
|
|
RecordingPostProcessorArguments = "\"{path}\"";
|
|
|
|
}
|
|
|
|
|
2018-12-27 16:27:57 -07:00
|
|
|
public int? GuideDays { get; set; }
|
2020-06-15 14:43:52 -07:00
|
|
|
|
2018-12-27 16:27:57 -07:00
|
|
|
public string RecordingPath { get; set; }
|
2020-06-15 14:43:52 -07:00
|
|
|
|
2018-12-27 16:27:57 -07:00
|
|
|
public string MovieRecordingPath { get; set; }
|
2020-06-15 14:43:52 -07:00
|
|
|
|
2018-12-27 16:27:57 -07:00
|
|
|
public string SeriesRecordingPath { get; set; }
|
2020-06-15 14:43:52 -07:00
|
|
|
|
2018-12-27 16:27:57 -07:00
|
|
|
public bool EnableRecordingSubfolders { get; set; }
|
2020-06-15 14:43:52 -07:00
|
|
|
|
2018-12-27 16:27:57 -07:00
|
|
|
public bool EnableOriginalAudioWithEncodedRecordings { get; set; }
|
|
|
|
|
|
|
|
public TunerHostInfo[] TunerHosts { get; set; }
|
2020-06-15 14:43:52 -07:00
|
|
|
|
2018-12-27 16:27:57 -07:00
|
|
|
public ListingsProviderInfo[] ListingProviders { get; set; }
|
|
|
|
|
|
|
|
public int PrePaddingSeconds { get; set; }
|
2020-06-15 14:43:52 -07:00
|
|
|
|
2018-12-27 16:27:57 -07:00
|
|
|
public int PostPaddingSeconds { get; set; }
|
|
|
|
|
|
|
|
public string[] MediaLocationsCreated { get; set; }
|
|
|
|
|
|
|
|
public string RecordingPostProcessor { get; set; }
|
2020-06-15 14:43:52 -07:00
|
|
|
|
2018-12-27 16:27:57 -07:00
|
|
|
public string RecordingPostProcessorArguments { get; set; }
|
|
|
|
}
|
|
|
|
}
|