From 787d3a164628a2bf30a49bf8273a8d65a3542593 Mon Sep 17 00:00:00 2001 From: Spencer Russell Date: Fri, 13 Dec 2013 02:48:52 -0500 Subject: [PATCH] updates readme --- README | 3 --- README.md | 19 +++++++++++++++++++ 2 files changed, 19 insertions(+), 3 deletions(-) delete mode 100644 README create mode 100644 README.md diff --git a/README b/README deleted file mode 100644 index 6b6f3ee..0000000 --- a/README +++ /dev/null @@ -1,3 +0,0 @@ -This is a Julia interface to PortAudio. - -More info to come... diff --git a/README.md b/README.md new file mode 100644 index 0000000..ff6f434 --- /dev/null +++ b/README.md @@ -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()