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 have created an AudioRecorder instance in a jupyter notebook for recording from the microphone.
The jupyter notebook output displays a recorder widget and an audio widget. Is there a way to turn off the audio widget display? I could call recorder.audio to show the audio player widget only , but could not find a way to only show the recorder widget.
I tried: recorder.audio.layout.display = 'none' and then invoked the recorder object. But it still displays the audio widget.
If I set recorder.layout.display to 'none' then it hides all the widgets. Is there any attribute that will only display the 'record' widget and not the audio? If not, how can this be accomplished?
The text was updated successfully, but these errors were encountered:
thanks @martinRenou , could you please suggest any hack to get this working? Ideally, I want to be able to put the two widgets in a HBox layout like so : widgets.HBox(recorder, audio) .. is there a woraround to accomplish that (if not hide the audio widget)
I have created an AudioRecorder instance in a jupyter notebook for recording from the microphone.
The jupyter notebook output displays a recorder widget and an audio widget. Is there a way to turn off the audio widget display? I could call
recorder.audio
to show the audio player widget only , but could not find a way to only show therecorder
widget.I tried:
recorder.audio.layout.display = 'none'
and then invoked therecorder
object. But it still displays the audio widget.If I set
recorder.layout.display
to 'none' then it hides all the widgets. Is there any attribute that will only display the 'record' widget and not the audio? If not, how can this be accomplished?The text was updated successfully, but these errors were encountered: