Moved ffmpeg to the controller project and added ffprobe

This commit is contained in:
LukePulverenti Luke Pulverenti luke pulverenti
2012-08-18 16:47:10 -04:00
parent 59a3dcc8c1
commit 3e86104641
8 changed files with 100 additions and 64 deletions

View File

@@ -164,8 +164,8 @@ namespace MediaBrowser.Api.HttpHandlers
startInfo.RedirectStandardOutput = true;
startInfo.RedirectStandardError = true;
startInfo.FileName = ApiService.FFMpegPath;
startInfo.WorkingDirectory = ApiService.FFMpegDirectory;
startInfo.FileName = Kernel.Instance.ApplicationPaths.FFMpegPath;
startInfo.WorkingDirectory = Kernel.Instance.ApplicationPaths.FFMpegDirectory;
startInfo.Arguments = GetCommandLineArguments();
Logger.LogInfo(startInfo.FileName + " " + startInfo.Arguments);