aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/MediaEncoding/MediaInfoRequest.cs
blob: 24df7b8854b03b2decf12921eda3e1ba86796f3e (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
using MediaBrowser.Model.Dlna;
using MediaBrowser.Model.Entities;
using MediaBrowser.Model.IO;
using MediaBrowser.Model.MediaInfo;
using System.Collections.Generic;

namespace MediaBrowser.Controller.MediaEncoding
{
    public class MediaInfoRequest
    {
        public string InputPath { get; set; }
        public MediaProtocol Protocol { get; set; }
        public bool ExtractChapters { get; set; }
        public DlnaProfileType MediaType { get; set; }
        public IIsoMount MountedIso { get; set; }
        public VideoType VideoType { get; set; }
        public List<string> PlayableStreamFileNames { get; set; }
        public bool ExtractKeyFrameInterval { get; set; }

        public MediaInfoRequest()
        {
            PlayableStreamFileNames = new List<string>();
        }
    }
}