Audio Recorder

modusa.record()[source]

Create a UI to record audio in jupyter notebook, the recorded signal is available as array.

import modusa as ms
result = ms.record()
y, sr, title = result() # Keep it in the next cell
Returns:

A lambda function that returns y(audio signal), sr(sampling rate), title(title set in the UI)

Return type:

Callable