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
- Host: GitHub
- URL: https://github.com/artskydj/node-sox-bin
- Owner: ArtskydJ
- Created: 2015-09-19T00:41:34.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2024-12-27T14:57:08.000Z (over 1 year ago)
- Last Synced: 2025-02-02T08:11:21.412Z (about 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 5.07 MB
- Stars: 10
- Watchers: 3
- Forks: 4
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
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 | [](https://ci.appveyor.com/project/ArtskydJ/sox-bin) | |
| macOS | 14.4.2 | [](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 | [](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)