EncodingOptions.cs 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. using MediaBrowser.Controller.Dlna;
  2. using MediaBrowser.Model.Dlna;
  3. namespace MediaBrowser.Controller.MediaEncoding
  4. {
  5. public class EncodingOptions
  6. {
  7. /// <summary>
  8. /// Gets or sets the item identifier.
  9. /// </summary>
  10. /// <value>The item identifier.</value>
  11. public string ItemId { get; set; }
  12. /// <summary>
  13. /// Gets or sets the media source identifier.
  14. /// </summary>
  15. /// <value>The media source identifier.</value>
  16. public string MediaSourceId { get; set; }
  17. /// <summary>
  18. /// Gets or sets the device profile.
  19. /// </summary>
  20. /// <value>The device profile.</value>
  21. public DeviceProfile DeviceProfile { get; set; }
  22. /// <summary>
  23. /// Gets or sets the output path.
  24. /// </summary>
  25. /// <value>The output path.</value>
  26. public string OutputPath { get; set; }
  27. /// <summary>
  28. /// Gets or sets the container.
  29. /// </summary>
  30. /// <value>The container.</value>
  31. public string Container { get; set; }
  32. /// <summary>
  33. /// Gets or sets the audio codec.
  34. /// </summary>
  35. /// <value>The audio codec.</value>
  36. public string AudioCodec { get; set; }
  37. /// <summary>
  38. /// Gets or sets the start time ticks.
  39. /// </summary>
  40. /// <value>The start time ticks.</value>
  41. public long? StartTimeTicks { get; set; }
  42. /// <summary>
  43. /// Gets or sets the maximum channels.
  44. /// </summary>
  45. /// <value>The maximum channels.</value>
  46. public int? MaxAudioChannels { get; set; }
  47. /// <summary>
  48. /// Gets or sets the channels.
  49. /// </summary>
  50. /// <value>The channels.</value>
  51. public int? AudioChannels { get; set; }
  52. /// <summary>
  53. /// Gets or sets the sample rate.
  54. /// </summary>
  55. /// <value>The sample rate.</value>
  56. public int? AudioSampleRate { get; set; }
  57. /// <summary>
  58. /// Gets or sets the bit rate.
  59. /// </summary>
  60. /// <value>The bit rate.</value>
  61. public int? AudioBitRate { get; set; }
  62. /// <summary>
  63. /// Gets or sets the maximum audio bit rate.
  64. /// </summary>
  65. /// <value>The maximum audio bit rate.</value>
  66. public int? MaxAudioBitRate { get; set; }
  67. }
  68. }