Skip to content
A signal synthesis library
Elixir
Latest commit 1583d94 Jan 6, 2016 @bitgamma bump version
Failed to load latest commit information.
.idea
config first import Nov 30, 2015
examples added basic morse decoder Jan 6, 2016
lib
test move example Dec 5, 2015
.gitignore
README.md added wav reader Jan 3, 2016
mix.exs bump version Jan 6, 2016
synthex.iml try complex sounds Jan 3, 2016

README.md

Synthex

A signal synthesis library. Currently implements basic oscillators and a few filters. Output to WAV file and direct audio output (requires SoX) are supported.

Installation

The package can be installed as:

  1. Add synthex to your list of dependencies in mix.exs:

    def deps do
      [{:synthex, "~> 0.0.1"}]
    end
    
  2. Ensure synthex is started before your application:

    def application do
      [applications: [:synthex]]
    end
    

How to use

Please take a look at the examples to see how to use it. Development is at a very early stage now, so things may change and break between releases

TODO

  • More filters (FIR) - coming soon
  • Tests
  • Documentation
Something went wrong with that request. Please try again.