-
|
Is it so that it is not possible to turn recording on/off during call using I tried to load it when call was active and got to console: but there was no |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
|
Didn't get any comments (which is unfortunately very common on this page), but I did an experiment. While in call, I put the call on hold. Then I load sndfile module and resume the call. After resume, I see Should I now create an issue or what? |
Beta Was this translation helpful? Give feedback.
-
|
The module has to be loaded always if you want to use it, you can enable/disable filters at runtime with: aufilt_enable(baresip_aufiltl(), "sndfile", false); // disabled
aufilt_enable(baresip_aufiltl(), "sndfile", true); // enabledBut as you already discovered, only on call changes/start filters are applied. |
Beta Was this translation helpful? Give feedback.
-
|
Thank you very much. I tested by adding Since it was quite a job, it would be nice to have |
Beta Was this translation helpful? Give feedback.
The module has to be loaded always if you want to use it, you can enable/disable filters at runtime with:
But as you already discovered, only on call changes/start filters are applied.