Running ffmpeg.exe through windows service fails to complete while dealing with large files
I am using ffmpeg.exe to convert video files to flv format . For that purpose i use a windows service to run the conversion process in background . While trying to convert large files (i experienced it when the file size is >14MB) through windows service it gets stuck at the line which starts the process (ie, process.start(); ). But when i tried to execute ffmpeg.exe directly from command prompt it worked with out any problems. My code in windows service is as follows: private Thread WorkerThread; protected override void OnStart(string[] args) { WorkerThread = new Thread(new ThreadStart