portaudio

Version, currently main branch1 version
  • main branchlatestJul 16, 2021

github.com/astellon/portaudio-cr

PortAudio bindings for Crystal.

0 stars
0 dependents
License: MIT

Installation

# Add this to your shard.yml
dependencies:
  portaudio:
    github: astellon/portaudio-cr
    branch: main

main is a branch, not a release, so this tracks it rather than pinning a version.

Then run:

shards install

shard.yml

Crystal
>=1.0.0, <2.0.0
License
MIT
Author
astellon

Dependencies

This version declares no dependencies.

README

portaudio-cr

PortAudio bindings in Crystal. This was previously managed in the astellon/quartz project but has been separated.

Installation

  1. Add the dependency to your shard.yml:

    dependencies:
      portaudio-cr:
        github: astellon/portaudio-cr
  2. Run shards install

Usage

The library can be loaded in the usual manner, but the name is portaudio.

require "portaudio"

For more information, See the portaudio.h File Reference. Only the function names are represented by the snake case, removing the PA_ prefix.

Development

TODO: Write development instructions here

Contributing

  1. Fork it (https://github.com/astellon/portaudio-cr/fork)
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request

Contributors