Video.cs 609 B

1234567891011121314151617181920
  1. using MediaBrowser.Model.Entities;
  2. using System.Collections.Generic;
  3. namespace MediaBrowser.Controller.Entities
  4. {
  5. public class Video : BaseItem
  6. {
  7. public VideoType VideoType { get; set; }
  8. public List<SubtitleStream> Subtitles { get; set; }
  9. public List<AudioStream> AudioStreams { get; set; }
  10. public int Height { get; set; }
  11. public int Width { get; set; }
  12. public string ScanType { get; set; }
  13. public float FrameRate { get; set; }
  14. public int BitRate { get; set; }
  15. public string Codec { get; set; }
  16. }
  17. }