aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Startup.Common/FFMpeg/FFMpegInfo.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Server.Startup.Common/FFMpeg/FFMpegInfo.cs')
-rw-r--r--MediaBrowser.Server.Startup.Common/FFMpeg/FFMpegInfo.cs24
1 files changed, 24 insertions, 0 deletions
diff --git a/MediaBrowser.Server.Startup.Common/FFMpeg/FFMpegInfo.cs b/MediaBrowser.Server.Startup.Common/FFMpeg/FFMpegInfo.cs
new file mode 100644
index 000000000..d33b12a9a
--- /dev/null
+++ b/MediaBrowser.Server.Startup.Common/FFMpeg/FFMpegInfo.cs
@@ -0,0 +1,24 @@
+namespace MediaBrowser.Server.Startup.Common.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; }
+ }
+} \ No newline at end of file