jellyfin-server/MediaBrowser.Model/MediaInfo/BlurayDiscInfo.cs

45 lines
1.1 KiB
C#
Raw Normal View History

2013-02-21 01:33:05 +00:00
using MediaBrowser.Model.Entities;
using System.Collections.Generic;
2013-02-21 06:38:23 +00:00
namespace MediaBrowser.Model.MediaInfo
2013-02-21 01:33:05 +00:00
{
/// <summary>
/// Represents the result of BDInfo output
/// </summary>
2013-02-21 06:38:23 +00:00
public class BlurayDiscInfo
2013-02-21 01:33:05 +00: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-02 01:35:57 +00:00
public string PlaylistName { get; set; }
2013-02-21 01:33:05 +00:00
/// <summary>
/// Gets or sets the chapters.
/// </summary>
/// <value>The chapters.</value>
public List<double> Chapters { get; set; }
}
public enum TransportStreamTimestamp
{
NONE,
ZERO,
VALID
}
2013-02-21 01:33:05 +00:00
}