You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
593 B
22 lines
593 B
using System;
|
|
using MediaBrowser.Model.Dlna;
|
|
using MediaBrowser.Model.Dto;
|
|
using MediaBrowser.Model.IO;
|
|
|
|
namespace MediaBrowser.Controller.MediaEncoding
|
|
{
|
|
public class MediaInfoRequest
|
|
{
|
|
public MediaSourceInfo MediaSource { get; set; }
|
|
public bool ExtractChapters { get; set; }
|
|
public DlnaProfileType MediaType { get; set; }
|
|
public IIsoMount MountedIso { get; set; }
|
|
public string[] PlayableStreamFileNames { get; set; }
|
|
|
|
public MediaInfoRequest()
|
|
{
|
|
PlayableStreamFileNames = Array.Empty<string>();
|
|
}
|
|
}
|
|
}
|