VideoInfo.cs 689 B

123456789101112131415161718192021222324252627282930
  1. using MediaBrowser.Model.Entities;
  2. using ProtoBuf;
  3. namespace MediaBrowser.Model.DTO
  4. {
  5. [ProtoContract]
  6. public class VideoInfo
  7. {
  8. [ProtoMember(1)]
  9. public string Codec { get; set; }
  10. [ProtoMember(2)]
  11. public int Height { get; set; }
  12. [ProtoMember(3)]
  13. public int Width { get; set; }
  14. [ProtoMember(4)]
  15. public string ScanType { get; set; }
  16. [ProtoMember(5)]
  17. public VideoType VideoType { get; set; }
  18. [ProtoMember(6)]
  19. public SubtitleStream[] Subtitles { get; set; }
  20. [ProtoMember(7)]
  21. public AudioStream[] AudioStreams { get; set; }
  22. }
  23. }