Coder Social home page Coder Social logo

Comments (5)

gordonklaus avatar gordonklaus commented on July 24, 2024

Hi!

My initial thoughts are that the mp3 library you are using is either too slow or is introducing artifacts. You can test the first hypothesis by decoding your mp3 ahead of time. If the problem persists then the second hypothesis must be true.

Also, check the int return from decoder.Read to be sure it is filling the whole buffer.

I hope this helps.

from portaudio.

ygabuev avatar ygabuev commented on July 24, 2024

Thanks for the advice! I'll try out your suggestions in the upcoming days and post an update here.

from portaudio.

ygabuev avatar ygabuev commented on July 24, 2024

I played around with the code and discovered the following. It turns out that decoder.Read always reads a specific number of bytes (4608 in my case) regardless of the provided buffer's size, which is why I get the glitches unless I set the buffer length to that specific value.

Do you know, is that the usual case for mp3 decoders? Or have I not found some hidden switch that lets me set or at least see that buffer length in advance?

UPD: the hidden switch is to use io.ReadFull (as suggested here) :)

from portaudio.

gordonklaus avatar gordonklaus commented on July 24, 2024

I see. That must be an optimization in the mp3 library to return fewer than the requested number of bytes. To avoid unnecessary buffering, I guess.

Glad you found the solution. I assume your code works as expected now?

from portaudio.

ygabuev avatar ygabuev commented on July 24, 2024

Yes, everything works now. @gordonklaus thank you for your help and for your work on the library!

from portaudio.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.