updates readme

This commit is contained in:
Spencer Russell 2013-12-13 02:48:52 -05:00
parent af0a6cdf55
commit 787d3a1646
2 changed files with 19 additions and 3 deletions

3
README
View file

@ -1,3 +0,0 @@
This is a Julia interface to PortAudio.
More info to come...

19
README.md Normal file
View file

@ -0,0 +1,19 @@
PortAudio.jl
============
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")
Note that currently the build.jl doesn't handle installing the dependencies,
namely portaudio, so you'll need to install those yourself.
Right now you can just play and stop some sin tones in your speakers:
julia> using PortAudio
julia> play_sin()
julia> stop_sin()