echogarden
Version:
An easy-to-use speech toolset. Includes tools for synthesis, recognition, alignment, speech translation, language detection, source separation and more.
32 lines (23 loc) • 800 B
text/typescript
import { loadPackage } from '../utilities/PackageManager.js'
import { commandExists } from '../utilities/Utilities.js'
import { getGlobalOption } from '../api/GlobalOptions.js'
import { joinPath } from '../utilities/PathUtilities.js'
export async function tryResolvingSoxPath() {
if (getGlobalOption('soxPath')) {
return getGlobalOption('soxPath')
}
const platform = process.platform
const arch = process.arch
if (platform === 'win32') {
const soxPackagePath = await loadPackage('sox-14.4.1a-win32')
return joinPath(soxPackagePath, 'sox.exe')
}
if (await commandExists('sox')) {
return 'sox'
}
if (platform === 'linux' && arch === 'x64') {
const soxPackagePath = await loadPackage('sox-14.4.2-linux-minimal')
return joinPath(soxPackagePath, 'sox')
}
return undefined
}