jellyfin/MediaBrowser.Controller/MediaEncoding/MediaInfoRequest.cs

26 lines
793 B
C#
Raw Normal View History

2015-04-05 15:01:57 +00:00
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; }
2017-08-19 19:43:35 +00:00
public string[] PlayableStreamFileNames { get; set; }
2017-03-05 15:38:36 +00:00
public int AnalyzeDurationMs { get; set; }
2015-04-05 15:01:57 +00:00
public MediaInfoRequest()
{
2017-08-19 19:43:35 +00:00
PlayableStreamFileNames = new string[] { };
2015-04-05 15:01:57 +00:00
}
}
}