I'm aware you can play a numpy array in a Jupyter Notebook using `IPython.display.Audio(data=wav[:], rate=sr)`, with `wav` being a numpy array.
However, I cannot find any information how to play audio in a Python script.
Is it possible with librosa to do something like this?: `
librosa.play(data=wav[:], rate=sr)`