807 B
807 B
PortAudio.jl
[![codecov.io] (http://codecov.io/github/JuliaAudio/PortAudio.jl/coverage.svg?branch=master)] (http://codecov.io/github/JuliaAudio/PortAudio.jl?branch=master)
PortAudio.jl is a wrapper for libportaudio, which gives cross-platform access to audio devices. It is compatible with the types defined in SampleTypes.jl, so it provides PortAudioSink
and PortAudioSource
types, which can be read from and written to.
Examples
Set up an audio pass-through from microphone to speaker
src = PortAudioSource()
sink = PortAudioSink()
write(sink, source)
end