praat
v6.0.9
Published
A simple, cross-platform NPM installer for Praat
Downloads
9
Readme
node-praat
A cross-platform NPM installer for Praat, for use in node.js programs. This package is aimed at developers/users of Praat scripts wishing to integrate them easily with Node.
How to install
npm install praat
Usage
var praat = require('praat');
var spawn = require('child_process').spawn;
spawn(praat, ['my_script.praat'], /* etc */);
System notes
On Windows and Linux, the installer will grab the appropriate Praat binary from the Praat website. Both 32-bit and 64-bit OSs are supported. Other OSs are currently not supported.
The installer does not ensure that Praat's own dependencies are installed (on Linux these are GTK, asound and libc >= 2.11 as the Praat website notes here).
On Windows, you get Praatcon (the console variant) rather than Praat (the GUI application).