What’s happening?
· I am experiencing a crash of the Win10 Roon GUI
How can we help?
· I am experiencing freezes or crashes
Other options
· Other
Describe the issue
I'm currently working with the Roon Audio API to connect an external Linux device to Roon and build a Roon Relais. My Roon Server (Win 11) is running 2.48 (build 1517), and the Roon Client on my Win 10 PC has the same release.
When I start streaming via the API, the Roon Client on the Win 10 PC crashes. When I restart the client, it crashes again immediately as long as the Audio API streams data.
Using the Roon App on my iPad I encounter no crash and see the correct GUI. Also I can use Roon there with no issue. See attached Foto.
I suspect there's a bug in my Win 10 client GUI, because the music is correctly passed through Roon and arrives as it should at the audio streamer.
Describe your network setup
Ethernet, iPad with WiFi
This is the Request I fire:
var options = {
session_id: body.session_id,
type: "channel",
slot: "play",
media_url: mediaUrl,
info: {
is_seek_allowed: false,
is_pause_allowed: false,
image_url: mediaImageUrl,
one_line: {line1: mediaName},
two_line: {line1: mediaName},
three_line: {line1: mediaName},
}
}
roon.core.services.RoonApiAudioInput.play(options, async (m, b) => { ... } );
This is a screenshot from my iPad during URL playback:
I also have an additional request:
Would you please be so kind to tell me how to enable the “Next” and “Previous” buttons in the GUI (disabled in the screenshot above) and how to set and catch the events if I click on them.
Thank you
Best DrCWO