forked from JoFrhwld/FAVE
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of https://github.com/DerMoehre/FAVE
- Loading branch information
Showing
72 changed files
with
1,838 additions
and
13,251 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
+607 Bytes
(100%)
docs/_build/doctrees/code/align/transcriptprocessor.doctree
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Sphinx build info version 1 | ||
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done. | ||
config: 95450042ea89bddbb1481c62b8e92e75 | ||
config: a9e501948c645bf032c7e86e32c92cb5 | ||
tags: 645f666f9bcd5a90fca523b33c5a78b7 |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,27 @@ | ||
Installing FAVE 2.0 | ||
=================== | ||
Installing FAVE 2 | ||
================= | ||
|
||
To be created | ||
Required software | ||
----------------- | ||
|
||
FAVE sometimes requires other software libraries in order to work. | ||
* FAVE-align requires `SoX <http://sox.sourceforge.net/>`_ and `HTK <https://htk.eng.cam.ac.uk/>`_. | ||
* FAVE-extract requires `Praat <https://www.fon.hum.uva.nl/praat/>`_. | ||
|
||
You will need to manually install these if they are not already installed on your computer. | ||
|
||
.. warning:: | ||
Mac users: HTK might need slight modification before it works. See `this bug report <https://github.com/JoFrhwld/FAVE/issues/48>`_. | ||
|
||
Install with PIP | ||
---------------- | ||
|
||
FAVE is available on the Python Package Index (PyPI) as ``fave``. You can install it using: | ||
|
||
.. code-block:: console | ||
python3 -m pip install fave | ||
Other package managers | ||
^^^^^^^^^^^^^^^^^^^^^^ | ||
Work is ongoing to publish FAVE as a debian package, but no other package system is supported at the moment. If you would like to package FAVE for your system, please feel free to :doc:`contribute <../contributing>`! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,24 @@ | ||
Quickstart guide to using FAVE 2.0 | ||
================================== | ||
|
||
To be created | ||
#. Install FAVE and its dependencies according to :doc:`the directions <installation>`. | ||
#. Download the ``FAAValign.py`` and ``extractFormants.py`` scripts. | ||
#. Check your transcription for out-of-dictionary words | ||
|
||
.. code-block:: console | ||
:caption: Check for out-of-dictionary words | ||
python3 FAAValign.py --check unknown_words.txt AudioFile.wav TranscriptionFile.txt OutputAlignment.TextGrid | ||
#. Open ``unknown_words.txt`` and create a transcription for each word listed. | ||
#. Align your audio and transcripts including your new transcriptions: | ||
|
||
.. code-block:: console | ||
:caption: Begin forced alignment | ||
python3 FAAValign.py --import custom_dictionary.txt AudioFile.wav TranscriptionFile.txt OutputAlignment.TextGrid | ||
#. Extract formant data using the default settings: | ||
|
||
.. code-block:: console | ||
:caption: Extract formant data | ||
python3 extractFormants.py AudioFile.wav Alignment.TextGrid OutputFileName.tsv |
Oops, something went wrong.