VideoEncodingOptions.cs 609 B

1234567891011121314151617181920212223242526
  1. 
  2. namespace MediaBrowser.Controller.MediaEncoding
  3. {
  4. public class VideoEncodingOptions : EncodingOptions
  5. {
  6. public string VideoCodec { get; set; }
  7. public string VideoProfile { get; set; }
  8. public double? VideoLevel { get; set; }
  9. public int? VideoStreamIndex { get; set; }
  10. public int? AudioStreamIndex { get; set; }
  11. public int? SubtitleStreamIndex { get; set; }
  12. public int? MaxWidth { get; set; }
  13. public int? MaxHeight { get; set; }
  14. public int? Height { get; set; }
  15. public int? Width { get; set; }
  16. }
  17. }