Files
Discord.Net/docs/guides/samples/audio_create_ffmpeg.cs
Christopher F 6a0f41a4dc Add voice guide
2017-01-26 15:50:55 -05:00

11 lines
297 B
C#

private Process CreateStream(string path)
{
var ffmpeg = new ProcessStartInfo
{
FileName = "ffmpeg",
Arguments = $"-i {path} -ac 2 -f s16le -ar 48000 pipe:1",
UseShellExecute = false,
RedirectStandardOutput = true,
};
return Process.Start(ffmpeg);
}