jellyfin-server/Emby.Server.Implementations/FFMpeg/FFMpegInfo.cs

24 lines
660 B
C#
Raw Normal View History

2016-11-18 21:06:00 +00:00
namespace Emby.Server.Implementations.FFMpeg
2013-09-25 00:54:51 +00:00
{
/// <summary>
/// Class FFMpegInfo
/// </summary>
public class FFMpegInfo
{
/// <summary>
/// Gets or sets the path.
/// </summary>
/// <value>The path.</value>
2014-05-07 02:28:19 +00:00
public string EncoderPath { get; set; }
2013-09-25 00:54:51 +00:00
/// <summary>
/// Gets or sets the probe path.
/// </summary>
/// <value>The probe path.</value>
public string ProbePath { get; set; }
/// <summary>
/// Gets or sets the version.
/// </summary>
/// <value>The version.</value>
public string Version { get; set; }
}
}