aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Providers/SubtitleOptions.cs
blob: 9e60492463a0c36dbc0495f33702794158948227 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#pragma warning disable CS1591

using System;

namespace MediaBrowser.Model.Providers
{
    public class SubtitleOptions
    {
        public bool SkipIfEmbeddedSubtitlesPresent { get; set; }
        public bool SkipIfAudioTrackMatches { get; set; }
        public string[] DownloadLanguages { get; set; }
        public bool DownloadMovieSubtitles { get; set; }
        public bool DownloadEpisodeSubtitles { get; set; }

        public string OpenSubtitlesUsername { get; set; }
        public string OpenSubtitlesPasswordHash { get; set; }
        public bool IsOpenSubtitleVipAccount { get; set; }

        public bool RequirePerfectMatch { get; set; }

        public SubtitleOptions()
        {
            DownloadLanguages = Array.Empty<string>();

            SkipIfAudioTrackMatches = true;
            RequirePerfectMatch = true;
        }
    }
}