Process p = Process.Start(new ProcessStartInfo() { FileName = "ffmpeg", Arguments = "-f s16le -ar 48000 -ac 2 pipe:1.mp3 -i 1.mp3", UseShellExecute = false, RedirectStandardOutput = true }); var stream = p.StandardOutput;