FFMpegInfo.cs 660 B

123456789101112131415161718192021222324
  1. namespace Emby.Server.Implementations.FFMpeg
  2. {
  3. /// <summary>
  4. /// Class FFMpegInfo
  5. /// </summary>
  6. public class FFMpegInfo
  7. {
  8. /// <summary>
  9. /// Gets or sets the path.
  10. /// </summary>
  11. /// <value>The path.</value>
  12. public string EncoderPath { get; set; }
  13. /// <summary>
  14. /// Gets or sets the probe path.
  15. /// </summary>
  16. /// <value>The probe path.</value>
  17. public string ProbePath { get; set; }
  18. /// <summary>
  19. /// Gets or sets the version.
  20. /// </summary>
  21. /// <value>The version.</value>
  22. public string Version { get; set; }
  23. }
  24. }