Title: No audio output from the bot · Issue #2385 · DSharpPlus/DSharpPlus · GitHub
Open Graph Title: No audio output from the bot · Issue #2385 · DSharpPlus/DSharpPlus
X Title: No audio output from the bot · Issue #2385 · DSharpPlus/DSharpPlus
Description: Summary I used a 5.0.0-nightly-02262 build for a long time, but recently I discovered that the bot cannot handle the voice channels (just hanging in the events). I decided to update the library to the latest version which I did already, ...
Open Graph Description: Summary I used a 5.0.0-nightly-02262 build for a long time, but recently I discovered that the bot cannot handle the voice channels (just hanging in the events). I decided to update the library to ...
X Description: Summary I used a 5.0.0-nightly-02262 build for a long time, but recently I discovered that the bot cannot handle the voice channels (just hanging in the events). I decided to update the library to ...
Opengraph URL: https://github.com/DSharpPlus/DSharpPlus/issues/2385
X: @github
Domain: patch-diff.githubusercontent.com
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"No audio output from the bot","articleBody":"### Summary\n\nI used a 5.0.0-nightly-02262 build for a long time, but recently I discovered that the bot cannot handle the voice channels (just hanging in the events). I decided to update the library to the latest version which I did already, and there is an issue.\nTo thansmit the music data to the voice channel the bot is connected to, I just push the FFMPEG data output to the VoiceNext TransmitSink via TransmitSink.WriteAsync method. But now the is noting in the bot audio output. Maybe I am missing something and/or there is more to do with the workaround between FFMPEG and TransmitSink, but I cannot find any similar issues on the issues and discussions tabs.\n\n### What version of the library are you using?\n\nv5.0.0-nightly (make sure you are using the latest nightly!)\n\n### What .NET version are you using? Make sure to use the latest patch release for your major version.\n\n.NET 9.0\n\n### Operating System\n\nWindows 10\n\n### Reproduction Steps\n\nConnect the bot to the desired voice channel:\n```\nvar guild = CommandContext?.Guild;\nif (guild is null)\n{\n return;\n}\n\nif (_guild != guild)\n{\n return;\n}\n\nDiscordVoiceState? state = CommandContext?.Member?.VoiceState;\nif (state is null)\n{\n return;\n}\n\nulong? id = state.ChannelId;\nif (!id.HasValue)\n{\n return;\n}\n\nDiscordChannel? channel = await guild.GetChannelAsync(id.Value);\nif (channel is null)\n{\n return;\n}\n\nTask\u003cVoiceNextConnection\u003e task = channel.ConnectAsync();\n_ = task.Wait(2000);\nVoiceNextConnection? Connection = task.IsCompletedSuccessfully ? task.Result : null;\nif (Connection is null)\n{\n return;\n}\n\nwhile (Connection.TargetChannel is null)\n{\n await Task.Delay(1);\n}\n\nwhile (true)\n{\n try\n {\n Connection.SendSpeakingAsync(true).Wait();\n break;\n }\n catch\n {\n await Task.Delay(1);\n }\n}\n```\n\nPush the data to the transmit sink:\n```\nVoiceTransmitSink TransmitSink = Connection.GetTransmitSink();\n\n// The player logic is too complicated, and I tried to use the direct data preparation\n\nconst int durationSeconds = 5;\nconst int sampleRate = 48000;\nconst short amplitude = 15000;\nconst double frequency = 440.0;\n\nvar totalSamples = sampleRate * durationSeconds;\nvar pcmData = new byte[totalSamples * 4];\n\nfor (int i = 0; i \u003c totalSamples; i++)\n{\n double time = (double)i / sampleRate;\n short sample = (short)(amplitude * Math.Sin(2 * Math.PI * frequency * time));\n\n int byteIndex = i * 4;\n\n pcmData[byteIndex] = (byte)(sample \u0026 0xFF);\n pcmData[byteIndex + 1] = (byte)((sample \u003e\u003e 8) \u0026 0xFF);\n\n pcmData[byteIndex + 2] = (byte)(sample \u0026 0xFF);\n pcmData[byteIndex + 3] = (byte)((sample \u003e\u003e 8) \u0026 0xFF);\n}\n\nusing var memoryStream = new MemoryStream(pcmData);\n\nmemoryStream.Position = 0;\nbyte[] buffer = new byte[3840];\n\nint bytesRead;\nwhile ((bytesRead = await memoryStream.ReadAsync(buffer)) \u003e 0)\n{\n if (bytesRead \u003c buffer.Length)\n {\n Array.Clear(buffer, bytesRead, buffer.Length - bytesRead);\n }\n await TransmitSink.WriteAsync(buffer, buffer.Length);\n await Task.Delay(20);\n}\n```\n\n### Trace Logs\n\n```log\nOn application start:\n\n[2025-10-04 12:49:30 +00:00] [DSharpPlus.DiscordClient] [Info] DSharpPlus; version 5.0.0-nightly-02551+39527ed9f52a75c332df24d3b854e6f42d8751c9\n[2025-10-04 12:49:30 +00:00] [DSharpPlus.Net.Gateway.ITransportService] [Debug] Connected to the Discord websocket, using zlib-stream compression.\n[2025-10-04 12:49:30 +00:00] [DSharpPlus.Net.Gateway.IGatewayClient] [Debug] Received hello event, starting heartbeating with an interval of 00:00:41.2500000 and identifying.\n[2025-10-04 12:49:30 +00:00] [DSharpPlus.Net.Gateway.IGatewayClient] [Debug] Identified with the Discord gateway\n[2025-10-04 12:49:31 +00:00] [DSharpPlus.Net.Gateway.IGatewayClient] [Debug] Received READY, the gateway is now operational.\n\n...\n\nOn command execution:\n\n[2025-10-04 12:50:09 +00:00] [DSharpPlus.DiscordClient] [Debug] Timer accuracy: 10000000/50000 (high resolution? True)\n```\n\n### Exceptions or other error messages\n\n```txt\nThere are no unhandled runtime exceptions thrown during the operation.\nThe DiscordClient logging level is LogLevel.Debug. No errors printed to the console output and error streams.\n```\n\n### Anything else you'd like to share\n\n_No response_","author":{"url":"https://github.com/BloodyBaRGaIn","@type":"Person","name":"BloodyBaRGaIn"},"datePublished":"2025-10-04T12:52:40.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":2},"url":"https://github.com/2385/DSharpPlus/issues/2385"}
| route-pattern | /_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format) |
| route-controller | voltron_issues_fragments |
| route-action | issue_layout |
| fetch-nonce | v2:beba08ec-e0bd-28a9-9deb-5ff6ed71770f |
| current-catalog-service-hash | 81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114 |
| request-id | DB02:2342CB:796736:A56409:698CC33E |
| html-safe-nonce | 5f8f41310d56c894752e4fb3158d56b6799bab547371d54c5ca34cc75ef5b44e |
| visitor-payload | eyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJEQjAyOjIzNDJDQjo3OTY3MzY6QTU2NDA5OjY5OENDMzNFIiwidmlzaXRvcl9pZCI6IjgxODY3MDQyMTM0MTA4OTA1NTgiLCJyZWdpb25fZWRnZSI6ImlhZCIsInJlZ2lvbl9yZW5kZXIiOiJpYWQifQ== |
| visitor-hmac | af013ef62855aee6a7dff83c588c79abbd6013f95df8ee8eeb69a65457a9350b |
| hovercard-subject-tag | issue:3483676669 |
| github-keyboard-shortcuts | repository,issues,copilot |
| google-site-verification | Apib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I |
| octolytics-url | https://collector.github.com/github/collect |
| analytics-location | / |
| fb:app_id | 1401488693436528 |
| apple-itunes-app | app-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/DSharpPlus/DSharpPlus/2385/issue_layout |
| twitter:image | https://opengraph.githubassets.com/142d16b757365411201323f08ab523311a58eb08181354061c58aaf3ee43ca24/DSharpPlus/DSharpPlus/issues/2385 |
| twitter:card | summary_large_image |
| og:image | https://opengraph.githubassets.com/142d16b757365411201323f08ab523311a58eb08181354061c58aaf3ee43ca24/DSharpPlus/DSharpPlus/issues/2385 |
| og:image:alt | Summary I used a 5.0.0-nightly-02262 build for a long time, but recently I discovered that the bot cannot handle the voice channels (just hanging in the events). I decided to update the library to ... |
| og:image:width | 1200 |
| og:image:height | 600 |
| og:site_name | GitHub |
| og:type | object |
| og:author:username | BloodyBaRGaIn |
| hostname | github.com |
| expected-hostname | github.com |
| None | 640eeb7b6ff4d8d106235d228c0c286e82592d4d2403227b5b2b4fc5832297a4 |
| turbo-cache-control | no-preview |
| go-import | github.com/DSharpPlus/DSharpPlus git https://github.com/DSharpPlus/DSharpPlus.git |
| octolytics-dimension-user_id | 36208721 |
| octolytics-dimension-user_login | DSharpPlus |
| octolytics-dimension-repository_id | 67243489 |
| octolytics-dimension-repository_nwo | DSharpPlus/DSharpPlus |
| octolytics-dimension-repository_public | true |
| octolytics-dimension-repository_is_fork | false |
| octolytics-dimension-repository_network_root_id | 67243489 |
| octolytics-dimension-repository_network_root_nwo | DSharpPlus/DSharpPlus |
| turbo-body-classes | logged-out env-production page-responsive |
| disable-turbo | false |
| browser-stats-url | https://api.github.com/_private/browser/stats |
| browser-errors-url | https://api.github.com/_private/browser/errors |
| release | 3d444f0a47beeeac94cddbb51c91ab408befe8d4 |
| ui-target | full |
| theme-color | #1e2327 |
| color-scheme | light dark |
Links:
Viewport: width=device-width