-
Notifications
You must be signed in to change notification settings - Fork 152
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Stuttering on 96 kHz / 24 bit FLAC #132
Comments
First of all, Thank you so much for this awesome product I just recently started using beep. I am suffering from similar symptoms. - speaker.Init(format.SampleRate, format.SampleRate.N(time.Second/10))
+ speaker.Init(format.SampleRate, format.SampleRate.N(time.Second/1000)) development specs
|
Sorry to keep coming back to you. I noticed the following statement in the README of the
I will discuss this with the issue of |
In my environment and usage, I can playback without noise by changing the buffer size to 20000. Due to my lack of knowledge and research, I cannot explain the reasons for these behaviors. I am thinking of using it anyway, as it seems to accomplish the application at hand. |
👋 Hello!
First off, thanks for this library! Got it mostly working, but struggling on a certain area.
Whenever I try playing a hi-res FLAC file (96 kHz / 24 bit) following the Beep Tutorial, I encounter stuttering and breaking.
Logging out
format
fromflac.Decode
on 2 different FLAC files:Precision: 2
,Sample Rate: 44100
) works without issuesPrecision: 3
,Sample Rate: 96000
) stutters. Tried fiddling with the resampling quality, without any luck.Here's a sample file where I can reproduce the stuttering.
It also doesn't help that this is my first time delving into audio processing, so I'm not quite sure if I'm just missing some configuration on how I'm using the lib, or whether this problem exists within
faiface/beep
, orhajimehoshi/oto
, or even just on OSX in general.Any pointer to the right direction will be highly appreciated.
I am on: MacOS Big Sur 11.6 (let me know if you'd like more environment settings).
The text was updated successfully, but these errors were encountered: