Bon
Explore posts from serversDIdiscord.js - Imagine ❄
•Created by Basti 🔮🛡 on 1/8/2025 in #djs-voice
No music playback on arch linux.
Was encountering this issue - where my Raspberry Pi would not be able to stream some remote audio files - due to
ffmpeg-static
. Removing the ffmpeg-static
npm package and installing ffmpeg itself on the machine was enough to fix the issue.
Thank you for helping me figure out what was wrong through this post!71 replies
HHomarr
•Created by Lety on 7/18/2023 in #💬・get-help
Error with PiHole dashboard after update to 0.13.0.
I'm experience similar issues after updating to 0.13.0. Though I am getting 500 Internal Server Errors and not 401/403 errors. Thank you guys for looking into the issue 🙂
12 replies
HHomarr
•Created by Bon on 2/24/2023 in #💬・get-help
Plex Integration Setup
Will have to wait for that to be fixed, then we should be good 👍
67 replies
HHomarr
•Created by Bon on 2/24/2023 in #💬・get-help
Plex Integration Setup
Nope, I think there's a bug with status codes other than 200
67 replies
HHomarr
•Created by Bon on 2/24/2023 in #💬・get-help
Plex Integration Setup
Oh wait, I can just set the "up" status to 401
67 replies
HHomarr
•Created by Bon on 2/24/2023 in #💬・get-help
Plex Integration Setup
Guess I'll just disable the ping setting
67 replies
HHomarr
•Created by Bon on 2/24/2023 in #💬・get-help
Plex Integration Setup
That fixes the ping, but breaks the Media Server widget 🙃
67 replies
HHomarr
•Created by Bon on 2/24/2023 in #💬・get-help
Plex Integration Setup
Since putting the exact IP will cause the ping to 401
67 replies
HHomarr
•Created by Bon on 2/24/2023 in #💬・get-help
Plex Integration Setup
What do people usually do for their Plex app?
67 replies
HHomarr
•Created by Bon on 2/24/2023 in #💬・get-help
Plex Integration Setup
Then perhaps a setting on the Media Server widget where the user inputs the IP to use?
67 replies
HHomarr
•Created by Bon on 2/24/2023 in #💬・get-help
Plex Integration Setup
Maybe the Media Server widget should only take the protocol, IP, and port of whatever is set under "Internal address" in the app? Instead of taking the protocol, IP, port, and path?
67 replies
HHomarr
•Created by Bon on 2/24/2023 in #💬・get-help
Plex Integration Setup
A-ha, realized why I was having issues. It's exactly as you said Lassley. The "Internal address" set in the Plex app must be the exact IP address to the plex instance.
I usually did
${plexIP}/web/
so that the ping setting could actually ping a web address. But doing so broke the Media Server widget since the widget would try to check ${plexIP}/web/status/sessions
instead of the correct ${plexIP}/status/sessions
67 replies
HHomarr
•Created by Bon on 2/24/2023 in #💬・get-help
Plex Integration Setup
Appreciate the help guys. I'll see if I can get the widget working 🙂
67 replies
HHomarr
•Created by Bon on 2/24/2023 in #💬・get-help
Plex Integration Setup
Didn't realize the Plex app had to be configured in order to get the Media Server widget working
67 replies
HHomarr
•Created by Bon on 2/24/2023 in #💬・get-help
Plex Integration Setup
I understand. I was just confused as to why my Media Server integration isn't working. You guys mentioned that you need to input the secret, but that's on the Plex app, not the Media Server widget
67 replies
HHomarr
•Created by Bon on 2/24/2023 in #💬・get-help
Plex Integration Setup
Do you need the Plex app setup in order to enable the Media Server widget?
67 replies
HHomarr
•Created by Bon on 2/24/2023 in #💬・get-help
Plex Integration Setup
Ahh I see. You set the config in the Plex app. What is the Media Server widget for then?
67 replies
HHomarr
•Created by Bon on 2/24/2023 in #💬・get-help
Plex Integration Setup
Where do you place this authentication token?
67 replies
DIdiscord.js - Imagine ❄
•Created by Bon on 7/19/2022 in #djs-questions
Determining if the client is currently in a specific voice channel
I think in this case
<Guild>.members.me.voice.channelId
may work! I didn't realize that the client could be fetched from the guild members list. That makes things a whole lot easier! I'll compare the voice channel of the user that performed the interaction to the one the client is currently connected to in that guild (if any)
I also see your point about the adapter mapping. You are correct, it maps guild id to object, not channel id. That's my mistake.
Thank you very much for your response6 replies