You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to play a music and some sound effects. Can I dynamically add another Signal to mix while playing? As I see the Signal API, it seems to be designed for static mixing.
The text was updated successfully, but these errors were encountered:
TonalidadeHidrica
changed the title
Is there a way to dynamically add a signal to mix?
[Question] Is there a way to dynamically add a signal to mix?
Mar 25, 2021
@TonalidadeHidrica that's right, using the Signal API it might be easier to reconstruct the full signal when you want to add or remove Signals dynamically. Alternatively, you could implement Signal for your own "signal collection" type that allows for adding/removing signals.
For dynamic composition of audio graphs, you might want to consider the dasp_graph crate - you can find a section in the docs discussing the difference to the dasp Signal API here.
I want to play a music and some sound effects. Can I dynamically add another
Signal
to mix while playing? As I see theSignal
API, it seems to be designed for static mixing.The text was updated successfully, but these errors were encountered: