gdzx/audiosource

Audio skipping

Closed this issue · 1 comments

Audio seems to come and go and the sound is just non-stop skipping, like so
image

Fixed by changing

PIPE_SIZE = 4096
BUF_SIZE = 1024 # Must be less than PIPE_BUF = 4096 for atomic writes.

in the audiosource script to

PIPE_SIZE = 5120
BUF_SIZE = 2048 # Must be less than PIPE_BUF = 4096 for atomic writes.