cd4641dca0
Since ffmpeg can play and transcode ISO files and BDMV folders directly, there's no use of that property.
17 lines
356 B
C#
17 lines
356 B
C#
#pragma warning disable CS1591
|
|
|
|
using MediaBrowser.Model.Dlna;
|
|
using MediaBrowser.Model.Dto;
|
|
|
|
namespace MediaBrowser.Controller.MediaEncoding
|
|
{
|
|
public class MediaInfoRequest
|
|
{
|
|
public MediaSourceInfo MediaSource { get; set; }
|
|
|
|
public bool ExtractChapters { get; set; }
|
|
|
|
public DlnaProfileType MediaType { get; set; }
|
|
}
|
|
}
|