|
@@ -10,15 +10,15 @@ namespace Vinno.IUS.Common.Media.FFmpeg
|
|
|
|
|
|
static FFmpegService()
|
|
|
{
|
|
|
- var path = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "Tools");
|
|
|
+ var path = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "Packages");
|
|
|
var toolPath = "";
|
|
|
if (Environment.OSVersion.Platform == PlatformID.Win32NT)
|
|
|
{
|
|
|
- toolPath = Path.Combine(path, "win", "ffmpeg.exe");
|
|
|
+ toolPath = Path.Combine(path, "ffmpeg.exe");
|
|
|
}
|
|
|
else if (Environment.OSVersion.Platform == PlatformID.Unix)
|
|
|
{
|
|
|
- toolPath = Path.Combine(path, "lin", "ffmpeg");
|
|
|
+ toolPath = Path.Combine(path, "ffmpeg");
|
|
|
}
|
|
|
_ffmpegPath = toolPath;
|
|
|
}
|