2014-11-09 11:24:57 -07:00
|
|
|
|
namespace MediaBrowser.Server.Startup.Common.FFMpeg
|
2013-09-24 17:54:51 -07:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Class FFMpegInfo
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class FFMpegInfo
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the path.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The path.</value>
|
2014-05-06 19:28:19 -07:00
|
|
|
|
public string EncoderPath { get; set; }
|
2013-09-24 17:54:51 -07: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; }
|
|
|
|
|
}
|
|
|
|
|
}
|