Metadata-Version: 2.1
Name: jaxdsp
Version: 0.3.0
Summary: Fast, differentiable audio processors on the CPU or GPU, with a browser client for real-time control
Home-page: https://github.com/khiner/jaxdsp
Author: Karl Hiner
Author-email: karl.hiner@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# JAXdsp

**Still working on this and will make a blog post soon!**

Fast, differentiable audio processors on the CPU or GPU, controlled from the browser.

The goal is to parameterize audio graphs, in real-time, to produce an audio stream resembling incoming audio.

Built with [JAX](https://github.com/google/jax), WebRTC, WebSockets and React.

_**Note:** The `requirements.txt` file at the root of this repo was generated with `pip freeze > requirements.txt`, and
it likely contains more than what's strictly needed!_

## Server

```shell
$ cd server
$ python server.py
```

## Client

_**Note:** For local development of the client within the test `/app` (see below), the client is included as a
local `file:../client` dependency, and included in the babel transpilation for the `/app` build (
see `app/craco.config.js`)._

_`build:dev` in the client just symlinks the `dist/jaxdsp-client.js` target to the root `index.js` file._

```shell
$ cd client
$ npm ci
$ npm run build # or, for a development build: `build:dev`
```

## App

```shell
$ cd app
$ npm ci
$ npm start
```


