< Summary - Jellyfin

Information
Class: MediaBrowser.Model.LiveTv.LiveTvOptions
Assembly: MediaBrowser.Model
File(s): /srv/git/jellyfin/MediaBrowser.Model/LiveTv/LiveTvOptions.cs
Line coverage
100%
Covered lines: 5
Uncovered lines: 0
Coverable lines: 5
Total lines: 48
Line coverage: 100%
Branch coverage
N/A
Covered branches: 0
Total branches: 0
Branch coverage: N/A
Method coverage

Feature is only available for sponsors

Upgrade to PRO version

Coverage history

Coverage history 0 25 50 75 100

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity Line coverage
.ctor()100%11100%

File(s)

/srv/git/jellyfin/MediaBrowser.Model/LiveTv/LiveTvOptions.cs

#LineLine coverage
 1#nullable disable
 2#pragma warning disable CS1591
 3
 4using System;
 5
 6namespace MediaBrowser.Model.LiveTv
 7{
 8    public class LiveTvOptions
 9    {
 10        public LiveTvOptions()
 11        {
 2212            TunerHosts = Array.Empty<TunerHostInfo>();
 2213            ListingProviders = Array.Empty<ListingsProviderInfo>();
 2214            MediaLocationsCreated = Array.Empty<string>();
 2215            RecordingPostProcessorArguments = "\"{path}\"";
 2216        }
 17
 18        public int? GuideDays { get; set; }
 19
 20        public string RecordingPath { get; set; }
 21
 22        public string MovieRecordingPath { get; set; }
 23
 24        public string SeriesRecordingPath { get; set; }
 25
 26        public bool EnableRecordingSubfolders { get; set; }
 27
 28        public bool EnableOriginalAudioWithEncodedRecordings { get; set; }
 29
 30        public TunerHostInfo[] TunerHosts { get; set; }
 31
 32        public ListingsProviderInfo[] ListingProviders { get; set; }
 33
 34        public int PrePaddingSeconds { get; set; }
 35
 36        public int PostPaddingSeconds { get; set; }
 37
 38        public string[] MediaLocationsCreated { get; set; }
 39
 40        public string RecordingPostProcessor { get; set; }
 41
 42        public string RecordingPostProcessorArguments { get; set; }
 43
 44        public bool SaveRecordingNFO { get; set; } = true;
 45
 46        public bool SaveRecordingImages { get; set; } = true;
 47    }
 48}

Methods/Properties

.ctor()