Code Monkey home page Code Monkey logo

Comments (5)

filoe avatar filoe commented on July 17, 2024

Ok, you've got two major problems here:

The first is that you're setting FillWithZeros to true (in addition I would recommend to set DivideResult to false). This causes the mixer to serve infinite data. The result is endless loop in the DataAvailable handler. Set is to false. The second problem is that the SimpleMixer class does not perfectly fit for this scenario. The handler reads data until zero bytes got read. The mixer will remove the soundInSource from the source if its Read-Method returns zero. The result is, that the mixer will remove the soundInSource.

Apply the following modifications:
Set the FillWithZeros and the DivideResult to false.
Go to the SimpleMixer class and comment the following line:
https://github.com/filoe/cscore/blob/master/Samples/SimpleMixerSample/SimpleMixer.cs#L91

from cscore.

djsharman avatar djsharman commented on July 17, 2024

Hi Florian,

Thank you for your help. I gave this a go and it does work but there is some noise being injected into the signal somewhere (possibly zeros from the buffer). I will investigate this further, and see if I can get to the bottom of it.

Regards,

Darren

from cscore.

postacik avatar postacik commented on July 17, 2024

I'm also using the SimpleMixer class from the samples and I confirm that tick like sounds can be heard in the final audio (noise being injected as explained above). I applied the proposed modifications (Set the FillWithZeros and the DivideResult to false etc.)

Do you have any suggestions on how to correct this problem?

from cscore.

filoe avatar filoe commented on July 17, 2024

So you may try to set DivideResult back to true. As the name already indicates, it is just a "simple" mixer, demonstrating the basic principle. The clipping problem is not really solved. It is possible that a sample exceeds its valid range (-1 to 1). This can cause a "tick" noise. Settings DivideResult to true will prevent that case. But if you've got a weak signal, it will become even weaker.

from cscore.

postacik avatar postacik commented on July 17, 2024

Setting DivideResult to true solved the problem. Thanks.

from cscore.

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.