2013-02-20 18:33:05 -07:00
|
|
|
|
using MediaBrowser.Model.Entities;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
2013-02-20 23:38:23 -07:00
|
|
|
|
namespace MediaBrowser.Model.MediaInfo
|
2013-02-20 18:33:05 -07:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Represents the result of BDInfo output
|
|
|
|
|
/// </summary>
|
2013-02-20 23:38:23 -07:00
|
|
|
|
public class BlurayDiscInfo
|
2013-02-20 18:33:05 -07:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the media streams.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The media streams.</value>
|
|
|
|
|
public List<MediaStream> MediaStreams { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the run time ticks.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The run time ticks.</value>
|
|
|
|
|
public long? RunTimeTicks { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the files.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The files.</value>
|
|
|
|
|
public List<string> Files { get; set; }
|
|
|
|
|
|
2013-09-01 18:35:57 -07:00
|
|
|
|
public string PlaylistName { get; set; }
|
|
|
|
|
|
2013-02-20 18:33:05 -07:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the chapters.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The chapters.</value>
|
|
|
|
|
public List<double> Chapters { get; set; }
|
|
|
|
|
}
|
2014-04-24 19:00:19 -07:00
|
|
|
|
|
|
|
|
|
public enum TransportStreamTimestamp
|
|
|
|
|
{
|
|
|
|
|
NONE,
|
|
|
|
|
ZERO,
|
|
|
|
|
VALID
|
|
|
|
|
}
|
2013-02-20 18:33:05 -07:00
|
|
|
|
}
|