aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Dlna/TranscodingProfile.cs
blob: 891448c664d1fef2f4635a01278de90b3b2bba11 (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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
#pragma warning disable CS1591

using System;
using System.ComponentModel;
using System.Xml.Serialization;
using Jellyfin.Data.Enums;

namespace MediaBrowser.Model.Dlna
{
    public class TranscodingProfile
    {
        public TranscodingProfile()
        {
            Conditions = Array.Empty<ProfileCondition>();
        }

        [XmlAttribute("container")]
        public string Container { get; set; } = string.Empty;

        [XmlAttribute("type")]
        public DlnaProfileType Type { get; set; }

        [XmlAttribute("videoCodec")]
        public string VideoCodec { get; set; } = string.Empty;

        [XmlAttribute("audioCodec")]
        public string AudioCodec { get; set; } = string.Empty;

        [XmlAttribute("protocol")]
        public MediaStreamProtocol Protocol { get; set; } = MediaStreamProtocol.http;

        [DefaultValue(false)]
        [XmlAttribute("estimateContentLength")]
        public bool EstimateContentLength { get; set; }

        [DefaultValue(false)]
        [XmlAttribute("enableMpegtsM2TsMode")]
        public bool EnableMpegtsM2TsMode { get; set; }

        [DefaultValue(TranscodeSeekInfo.Auto)]
        [XmlAttribute("transcodeSeekInfo")]
        public TranscodeSeekInfo TranscodeSeekInfo { get; set; }

        [DefaultValue(false)]
        [XmlAttribute("copyTimestamps")]
        public bool CopyTimestamps { get; set; }

        [DefaultValue(EncodingContext.Streaming)]
        [XmlAttribute("context")]
        public EncodingContext Context { get; set; }

        [DefaultValue(false)]
        [XmlAttribute("enableSubtitlesInManifest")]
        public bool EnableSubtitlesInManifest { get; set; }

        [XmlAttribute("maxAudioChannels")]
        public string? MaxAudioChannels { get; set; }

        [DefaultValue(0)]
        [XmlAttribute("minSegments")]
        public int MinSegments { get; set; }

        [DefaultValue(0)]
        [XmlAttribute("segmentLength")]
        public int SegmentLength { get; set; }

        [DefaultValue(false)]
        [XmlAttribute("breakOnNonKeyFrames")]
        public bool BreakOnNonKeyFrames { get; set; }

        public ProfileCondition[] Conditions { get; set; }

        public string[] GetAudioCodecs()
        {
            return ContainerProfile.SplitValue(AudioCodec);
        }
    }
}