1.0.2 • Published 6 years ago

sox-bin v1.0.2

Weekly downloads
107
License
VOL
Repository
github
Last release
6 years ago

sox-bin

Get SoX as a binary

PlatformSoX VersionStatus
Windows14.4.2Windows Build Status
macOS14.4.2macOS Build Status
FreeBSD14.4.1-5Untested
Linux14.4.1-5Linux Build Status

example

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

var soxPath = require('sox-bin')

soxPath

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

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

license

VOL