You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

audio_create_ffmpeg.cs 297 B

8 years ago
1234567891011
  1. private Process CreateStream(string path)
  2. {
  3. var ffmpeg = new ProcessStartInfo
  4. {
  5. FileName = "ffmpeg",
  6. Arguments = $"-i {path} -ac 2 -f s16le -ar 48000 pipe:1",
  7. UseShellExecute = false,
  8. RedirectStandardOutput = true,
  9. };
  10. return Process.Start(ffmpeg);
  11. }