How to play any waveform's audio in julia language?
问题 I have a sinusoid with length 5 seconds as below: x=sin(0:.01:2*pi*500*5); Now I would like to hear the audio of this waveform by giving a command similar as below: playsound(x,samplingfrequency); It will be useful for me if I could write this audio data to a wav or mp3 file. What is the library needed and the equivalent command in julia for this functionality? 回答1: You may play audio with https://github.com/ssfrr/AudioIO.jl And for write/read wav https://github.com/JuliaLang/Sound.jl/blob