fasttrackpy

A python implementation of FastTrack


License
MIT
Install
pip install fasttrackpy==0.4.7

Documentation

FastTrackPy

PyPI PyPI - Python Version PyPI - Python Version Python CI codecov DOI

A python implementation of the FastTrack method

Installation

pip install fasttrackpy

This will make the command line executable fasttrack available, along with its subcommands:

  • audio
  • audio-textgrid
  • corpus

Getting help

For any of the fasttrack subcommands, add the --help flag to print the help info. You can also visit the docs.

Usage

For a single audio file containing a vowel-like sound:

fasttrack audio --file audio.wav \
    --output formants.csv

For a paired audio file and textgrid with intervals defining target audio to process:

fasttrack audio-textgrid --audio audio.wav \
    --textgrid audio.TextGrid \
    --output formants.csv

For a corpus directory of paired audio files and textgrid

fasttrack corpus --corpus dir/ \
    --output formants.csv