04-18-2024, 05:59 PM
I just opened Gear City for the first time in about a year. Currently the audio of the music sounds glitchy and stuttery, like the sample rate is mismatched or something like that. I do not remember it sounding like this before.
This is running under PulseAudio through Jack on Linux. The sample rate is 96000 hz, 2048 Frames/Period, 2 Periods/Buffer. I run this script upon start of LXDE to pipe Pulseaudio through the jack audio server:
Have there been any changes to the audio since the version from April 27th 2023 that might cause this?
This is running under PulseAudio through Jack on Linux. The sample rate is 96000 hz, 2048 Frames/Period, 2 Periods/Buffer. I run this script upon start of LXDE to pipe Pulseaudio through the jack audio server:
Code:
#!/bin/sh
killall pulseaudio
sleep 1
pacmd load-module module-jack-sink channels=2
pacmd load-module module-jack-source
pactl set-default-sink jack_out
Have there been any changes to the audio since the version from April 27th 2023 that might cause this?