UNPKG

echogarden

Version:

An easy-to-use speech toolset. Includes tools for synthesis, recognition, alignment, speech translation, language detection, source separation and more.

24 lines 909 B
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; } //# sourceMappingURL=SoxPath.js.map