How to save the audio file using ipd.display?
Just a minimal sample here
from IPython.display import Audio
from IPython.core.display import display
import librosa
audio_data, sample_rate = librosa.load('/Users/0_hey.wav', sr=None)
ipd.Audio(audio_data, rate=sample_rate)
Then it plays a sound, but I don't know how to save the audio file.
I know that we can download it by clicking the right bottom.
But I hope it can also be written in codes.