MediaVersionInfo.cs 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. using MediaBrowser.Model.Entities;
  2. using System.Collections.Generic;
  3. using MediaBrowser.Model.MediaInfo;
  4. namespace MediaBrowser.Model.Dto
  5. {
  6. public class MediaSourceInfo
  7. {
  8. public string Id { get; set; }
  9. public string Path { get; set; }
  10. public string Container { get; set; }
  11. public long? Size { get; set; }
  12. public LocationType LocationType { get; set; }
  13. public string Name { get; set; }
  14. public long? RunTimeTicks { get; set; }
  15. public VideoType? VideoType { get; set; }
  16. public IsoType? IsoType { get; set; }
  17. public Video3DFormat? Video3DFormat { get; set; }
  18. public List<MediaStream> MediaStreams { get; set; }
  19. public List<string> Formats { get; set; }
  20. public int? Bitrate { get; set; }
  21. public TransportStreamTimestamp? Timestamp { get; set; }
  22. public MediaSourceInfo()
  23. {
  24. Formats = new List<string>();
  25. MediaStreams = new List<MediaStream>();
  26. }
  27. }
  28. }