jellyfin/MediaBrowser.Model/Entities/Video.cs

45 lines
1.1 KiB
C#
Raw Normal View History

using System.Collections.Generic;
2012-07-12 08:55:27 +02:00
namespace MediaBrowser.Model.Entities
{
public class Video : BaseItem
{
public VideoType VideoType { get; set; }
public List<SubtitleStream> Subtitles { get; set; }
public List<AudioStream> AudioStreams { get; set; }
2012-07-12 08:55:27 +02:00
public int Height { get; set; }
public int Width { get; set; }
public string ScanType { get; set; }
public float FrameRate { get; set; }
public int BitRate { get; set; }
public string Codec { get; set; }
2012-07-12 08:55:27 +02:00
}
public class AudioStream
{
public string Codec { get; set; }
2012-07-12 08:55:27 +02:00
public string Language { get; set; }
public int BitRate { get; set; }
public int Channels { get; set; }
public int SampleRate { get; set; }
public bool IsDefault { get; set; }
2012-08-22 14:56:44 +02:00
}
public class SubtitleStream
{
public string Language { get; set; }
public bool IsDefault { get; set; }
public bool IsForced { get; set; }
2012-07-12 08:55:27 +02:00
}
public enum VideoType
{
VideoFile,
Iso,
DVD,
BluRay
2012-07-12 08:55:27 +02:00
}
}