You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
663 B
24 lines
663 B
namespace MediaBrowser.ServerApplication.FFMpeg
|
|
{
|
|
/// <summary>
|
|
/// Class FFMpegInfo
|
|
/// </summary>
|
|
public class FFMpegInfo
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the path.
|
|
/// </summary>
|
|
/// <value>The path.</value>
|
|
public string EncoderPath { get; set; }
|
|
/// <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; }
|
|
}
|
|
} |