An open API service indexing awesome lists of open source software.

https://github.com/artskydj/node-sox-bin

:speaker: Get SoX as a binary
https://github.com/artskydj/node-sox-bin

Last synced: 5 months ago
JSON representation

:speaker: Get SoX as a binary

Awesome Lists containing this project

README

          

# sox-bin

> Get [SoX](http://sox.sourceforge.net/) as a binary

| Platform | SoX Version | Status | Notes |
|----------|-------------|------------|----------|
| Windows | 14.4.2 | [![Windows Build Status](https://ci.appveyor.com/api/projects/status/dyg7v0yv1jyvmcmr?svg=true)](https://ci.appveyor.com/project/ArtskydJ/sox-bin) | |
| macOS | 14.4.2 | [![macOS Build Status](https://travis-ci.org/ArtskydJ/sox-bin.svg)](https://travis-ci.org/ArtskydJ/sox-bin) | |
| FreeBSD | 14.4.1-5 | Untested | Not working on linux. :( [Help wanted](https://github.com/ArtskydJ/sox-bin/issues/2) |
| Linux | 14.4.1-5 | [![Linux Build Status](https://circleci.com/gh/ArtskydJ/sox-bin.svg?style=shield)](https://circleci.com/gh/ArtskydJ/sox-bin) | Not working on linux. :( [Help wanted](https://github.com/ArtskydJ/sox-bin/issues/2) |

## example

```js
var soxPath = require('sox-bin')
var cp = require('child_process')

var command = soxPath + ' --version'
cp.exec(command, function (err, stdout) {
if (err) {
throw err
} else {
console.log(stdout.toString())
}
})
```

## api

```js
var soxPath = require('sox-bin')
```

#### `soxPath`

`soxPath` is a string of the path to the SoX binary.

```js
console.log(soxPath) // => "C:\Users\Joseph\Github\sox-bin\vendor\windows\sox.exe"
```

## license

[VOL](http://veryopenlicense.com)