TranscodingProfile.cs 334 B

12345678910111213141516
  1. 
  2. namespace MediaBrowser.Controller.Dlna
  3. {
  4. public class TranscodingProfile
  5. {
  6. public string Container { get; set; }
  7. public DlnaProfileType Type { get; set; }
  8. public string MimeType { get; set; }
  9. public string VideoCodec { get; set; }
  10. public string AudioCodec { get; set; }
  11. }
  12. }