Answers for "ipython audio"

0

ipython play sound

import IPython
IPython.display.Audio("my_audio_file.mp3")
Posted by: Guest on August-03-2021
0

audioplayer python

from audioplayer import AudioPlayer

# Playback stops when the object is destroyed (GC'ed), so save a reference to the object for non-blocking playback.
AudioPlayer("path/to/somemusic.mp3").play(block=True)
Posted by: Guest on October-16-2021

Browse Popular Code Answers by Language