summaryrefslogtreecommitdiffstats
path: root/win/C#/interop/Model/EncodeJob.cs
blob: 53058a92193beeb80bf35168d945920873dd30d6 (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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Xml.Serialization;

namespace HandBrake.Interop
{
    public class EncodeJob
    {
        public SourceType SourceType { get; set; }
        public string SourcePath { get; set; }

        /// <summary>
        /// Gets or sets the 1-based index of the title to encode.
        /// </summary>
        public int Title { get; set; }

        /// <summary>
        /// Gets or sets the angle to encode. 0 for default, 1+ for specified angle.
        /// </summary>
        public int Angle { get; set; }
        public int ChapterStart { get; set; }
        public int ChapterEnd { get; set; }

        /// <summary>
        /// Gets or sets the list of chosen audio tracks (1-based)
        /// </summary>
        public List<int> ChosenAudioTracks { get; set; }
        public Subtitles Subtitles { get; set; }
        public bool UseDefaultChapterNames { get; set; }
        public List<string> CustomChapterNames { get; set; }

        public string OutputPath { get; set; }

        public EncodingProfile EncodingProfile { get; set; }

        // The length of video to encode.
        [XmlIgnore]
        public TimeSpan Length { get; set; }

        [XmlElement("Length")]
        public string XmlLength
        {
            get { return this.Length.ToString(); }
            set { this.Length = TimeSpan.Parse(value); }
        }

        public EncodeJob Clone()
        {
            EncodeJob clone = new EncodeJob
            {
                SourceType = this.SourceType,
                SourcePath = this.SourcePath,
                Title = this.Title,
                ChapterStart = this.ChapterStart,
                ChapterEnd = this.ChapterEnd,
                ChosenAudioTracks = new List<int>(this.ChosenAudioTracks),
                Subtitles = this.Subtitles,
                UseDefaultChapterNames = this.UseDefaultChapterNames,
                OutputPath = this.OutputPath,
                EncodingProfile = this.EncodingProfile,
                Length = this.Length
            };

            return clone;
        }
    }
}