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_ffmpeg.cs 321 B

8 years ago
123456789
  1. private async Task SendAsync(IAudioClient client, string path)
  2. {
  3. // Create FFmpeg using the previous example
  4. var ffmpeg = CreateStream(path);
  5. var output = ffmpeg.StandardOutput.BaseStream;
  6. var discord = client.CreatePCMStream(1920);
  7. await output.CopyToAsync(discord);
  8. await discord.FlushAsync();
  9. }