Arimil
Arimil
So I did some testing and exposed the hls segment length limit as recommended in https://github.com/jellyfin/jellyfin/issues/14020#issuecomment-2837691921 (see https://github.com/jellyfin/jellyfin-web/commit/2e3eabc6deb27994714cc95edf00d045cf9baccd) this didn't entirely fix the problem. The buffer stalled issue happened all...
Just a heads up, I recently realized I was able to remove this and still have hardware acceleration on `580.82.09`.
The easiest thing to do is just do `ydotool mousemove -x -9999999 -y -9999999` a couple times to force the mouse to 0,0. Then you can have your next move...
Yeah I noticed this the first time moving to a negative position takes me to around 100,100 however a 2nd call correctly gets you to 0,0.
for reference: ```bash ❯ sudo -b ydotoold --socket-path="/tmp/.ydotool_socket" --socket-own="$(id -u):$(id -g)" Socket path: /tmp/.ydotool_socket Socket permission: 0600 Socket ownership: UID=1000, GID=1000 READY WARNING: running xinput against an Xwayland server. See...
After further testing, I don't believe this to be an issue with Tom's Storage, but rather Cloud Storage since similar issues happen with other mods as stated in the above...
https://github.com/bitbrain/beehave/discussions/285 it's mentioned here with repo links
I've moved these calls to `IAudioRenderer` however this now poses an issue with how I would extract a valid AudioRenderer to pull the device list, currently it seems all of...
This is now completely setup for SDL2, however I'm not sure why this is failing: ```cpp if (!configuredDevice.isEmpty() && configuredDevice != "Default") { outputDevice = configuredDevice.toUtf8().data(); } m_AudioDevice = SDL_OpenAudioDevice(outputDevice,...
This is now working however I have no clue why: ```cpp const char* outputDevice = nullptr; QString configuredDevice; QByteArray utf8Data; if (Session::get() != nullptr) { // if there's not a...