PortAudio wrapper for the Julia programming language, compatible with the JuliaAudio family of packages
Find a file
2013-12-30 01:31:54 -08:00
deps some build tweaks to get OSX working. needs testing on Linux 2013-12-22 11:49:05 -05:00
src adds tests and support for playing more array types 2013-12-30 01:00:04 -08:00
test test tweaks and adds tests to travis.yml 2013-12-30 01:31:54 -08:00
.gitignore some build tweaks to get OSX working. needs testing on Linux 2013-12-22 11:49:05 -05:00
.travis.yml test tweaks and adds tests to travis.yml 2013-12-30 01:31:54 -08:00
LICENSE initial commit with some toy code 2013-12-11 20:18:36 -05:00
README.md removes note in README regarding dependencies 2013-12-21 19:04:25 -05:00

PortAudio.jl

Build Status

This is a Julia interface to PortAudio. It is currently under heavy development and certainly not even close to being useful.

If you want to try it anyways, from your julia console:

julia> Pkg.clone("https://github.com/ssfrr/PortAudio.jl.git")
julia> Pkg.build("PortAudio")

Right now you can just play and stop some sin tones in your speakers:

julia> using PortAudio
julia> play_sin()
julia> stop_sin()