Last active
July 16, 2016 10:31
-
-
Save macleginn/fc8457bb1ea86b2655bec92ec77f6907 to your computer and use it in GitHub Desktop.
Praat editor script for plotting formants from the selected segment and printing their values along with the duration in the info window
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
Extract selected sound (time from 0) | |
endeditor | |
duration = Get total duration | |
writeInfoLine: fixed$ (duration, 3) | |
# Replace 5000 with 5500 for female voice. | |
# You may need to tweak the number of formants (2nd parameter) based on | |
# your data. Sometimes, if two formants are close to each other, | |
# it is necessary to ask for 6 formants so that they may be decoupled. | |
# In other cases, however, this may introduce spurious formants, and | |
# it is always advisable to check the spectrogram. | |
To Formant (burg): 0, 5, 5000, 0.025, 50 | |
Erase all | |
Draw tracks: 0, 0, 5500, "yes" | |
formantsInfo$ = List: "no", "yes", 5, "no", 3, "yes", 3, "yes" | |
appendInfo: formantsInfo$ | |
removeObject: "Sound untitled" | |
removeObject: "Formant untitled" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment