|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Model.LiveTv
|
|
|
|
|
{
|
|
|
|
|
public class LiveTvOptions
|
|
|
|
|
{
|
|
|
|
|
public int? GuideDays { get; set; }
|
|
|
|
|
public bool EnableMovieProviders { get; set; }
|
|
|
|
|
public string RecordingPath { get; set; }
|
|
|
|
|
public string MovieRecordingPath { get; set; }
|
|
|
|
|
public string SeriesRecordingPath { get; set; }
|
|
|
|
|
public bool EnableAutoOrganize { get; set; }
|
|
|
|
|
public bool EnableRecordingEncoding { get; set; }
|
|
|
|
|
public bool EnableRecordingSubfolders { get; set; }
|
|
|
|
|
public bool EnableOriginalAudioWithEncodedRecordings { get; set; }
|
|
|
|
|
|
|
|
|
|
public List<TunerHostInfo> TunerHosts { get; set; }
|
|
|
|
|
public List<ListingsProviderInfo> ListingProviders { get; set; }
|
|
|
|
|
|
|
|
|
|
public int PrePaddingSeconds { get; set; }
|
|
|
|
|
public int PostPaddingSeconds { get; set; }
|
|
|
|
|
|
|
|
|
|
public string[] MediaLocationsCreated { get; set; }
|
|
|
|
|
|
|
|
|
|
public LiveTvOptions()
|
|
|
|
|
{
|
|
|
|
|
EnableMovieProviders = true;
|
|
|
|
|
EnableRecordingSubfolders = true;
|
|
|
|
|
TunerHosts = new List<TunerHostInfo>();
|
|
|
|
|
ListingProviders = new List<ListingsProviderInfo>();
|
|
|
|
|
MediaLocationsCreated = new string[] { };
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class TunerHostInfo
|
|
|
|
|
{
|
|
|
|
|
public string Id { get; set; }
|
|
|
|
|
public string Url { get; set; }
|
|
|
|
|
public string Type { get; set; }
|
|
|
|
|
public string DeviceId { get; set; }
|
|
|
|
|
public bool ImportFavoritesOnly { get; set; }
|
|
|
|
|
public bool AllowHWTranscoding { get; set; }
|
|
|
|
|
public bool IsEnabled { get; set; }
|
|
|
|
|
public string M3UUrl { get; set; }
|
|
|
|
|
public string InfoUrl { get; set; }
|
|
|
|
|
public string FriendlyName { get; set; }
|
|
|
|
|
public int Tuners { get; set; }
|
|
|
|
|
public string DiseqC { get; set; }
|
|
|
|
|
public string SourceA { get; set; }
|
|
|
|
|
public string SourceB { get; set; }
|
|
|
|
|
public string SourceC { get; set; }
|
|
|
|
|
public string SourceD { get; set; }
|
|
|
|
|
|
|
|
|
|
public int DataVersion { get; set; }
|
|
|
|
|
|
|
|
|
|
public TunerHostInfo()
|
|
|
|
|
{
|
|
|
|
|
IsEnabled = true;
|
|
|
|
|
AllowHWTranscoding = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class ListingsProviderInfo
|
|
|
|
|
{
|
|
|
|
|
public string Id { get; set; }
|
|
|
|
|
public string Type { get; set; }
|
|
|
|
|
public string Username { get; set; }
|
|
|
|
|
public string Password { get; set; }
|
|
|
|
|
public string ListingsId { get; set; }
|
|
|
|
|
public string ZipCode { get; set; }
|
|
|
|
|
public string Country { get; set; }
|
|
|
|
|
public string Path { get; set; }
|
|
|
|
|
|
|
|
|
|
public string[] EnabledTuners { get; set; }
|
|
|
|
|
public bool EnableAllTuners { get; set; }
|
|
|
|
|
public string[] NewsGenres { get; set; }
|
|
|
|
|
public string[] SportsGenres { get; set; }
|
|
|
|
|
public string[] KidsGenres { get; set; }
|
|
|
|
|
|
|
|
|
|
public ListingsProviderInfo()
|
|
|
|
|
{
|
|
|
|
|
NewsGenres = new string[] { "news" };
|
|
|
|
|
SportsGenres = new string[] { "sports", "basketball", "baseball", "football" };
|
|
|
|
|
KidsGenres = new string[] { "kids", "family", "children" };
|
|
|
|
|
EnabledTuners = new string[] { };
|
|
|
|
|
EnableAllTuners = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|