Praat Download Mac

Praat is a carefully created software solution aimed at those who want to analyze, synthesize and manipulate speech. Moreover, with this tool, you can generate high-quality images that you can export and insert into scientific papers or personal studies. While the developer is fixing the problem, try using an older version. If you need the previous version of Praat, check out the app's version history which includes all versions available to download. Download prior versions of Praat for Mac. All previous versions of Praat are virus-free and free to download at. Praat's interface consists of two parts, Praat Objects and Praat Picture. We started by opening the Help file, which offers an excellent introduction to Praat and an overview of its functions. Praat is a powerful, yet easy-to-use tool developed by Paul Boersma and it allows Mac users to analyze sounds.

Will Styler

Download Praat for Mac free. Analyze, synthesize, manipulate speech and more. Praat for Mac, free and safe download. Praat latest version: Linguistic tool for studying sounds. Download the latest version of Praat for Mac for free. Read 40 user reviews and compare with similar apps on MacUpdate.

Assistant Teaching Professor - UC San Diego

  • Pages:
  • Resources:

This was originally posted on my blog, Notes from a Linguistic Mystic in 2014. See all posts

EDIT: According to Mitch Ohriner in November 2019, these instructions still work, albeit with the following two changes. Thanks Mitch!

  1. In “strarr.c” in htk/HTKLib I had to replace Line 21 with #include <stdlib.h>
  2. This is probably because of the permissions structure of my school-owned computer, but I had to use sudo make install instead of make install to finish up the HTK stuff (so that it would elicit a password instead of just saying “permission denied”.

As part of my dissertation, I’m having to record a large number of subjects and do analyses on their speech. The biggest problem with doing that is that in order to do the analyses automatically, you need to time-align the words, creating files which tell your analysis software (in this case, Praat) where each sentence/word/sound starts and ends.

The fastest way to do this automatically is using what’s called “forced alignment”, and the current best forced aligner for English for phonetic use is the Penn Phonetics Lab Forced Aligner. In this post, I’ll describe how I got it working on my Mac running Mavericks (10.9), in a step-by-step sort of way.

There are four basic steps involved: 1. Install HTK (the hard part!) 2. Install the Penn Phonetics Lab Forced Aligner (henceforth P2FA) 3. Install Sox (which is required by P2FA) 4. Set it up for your data and run it to get aligned textgrids

Disclaimer

This post is up as a public service. I’ve done my absolute best to be comprehensive and clear, but your system/install/issue may vary, and they might update any of these tools at any time, and this post may not change when they do. I’m also mid-dissertation, so I’m unable to offer personal assistance setting up P2FA to commenters or by email.

Feel free to leave a comment if you have a question or issue, and maybe somebody can help, but nothing’s guaranteed. In short, the Linguistic Mystic is not responsible for any troubles, your mileage may vary, good luck and godspeed.

Step 0.5: Xcode Command Line Tools

If you’re doing anything code-y on a Mac, you need Xcode for the compilers and other useful tools it has.

  1. Download Xcode from the Mac App Store (it’s free).
  2. Follow these instructions to install the XCode command line tools.

Step 1: Installing HTK

Praat For Mac

This is the hardest and most terrifying part if you’re not used to compiling and installing command-line tools. We’ll take it step by step, though.

The P2FA readme is very specific that you need version 3.4 of HTK, so let’s install that. The manual isn’t terribly helpful for a Mac install, so we’ll have to go this alone.

Pratt Software Download

  1. Go over to http://htk.eng.cam.ac.uk and register. It’s free and only takes a minute.

  2. Download HTK 3.4 from this page. Since you’re on a Mac, grab HTK-3.4.tar.gz.

  3. On your Mac, go to wherever the file downloaded to, and double-click the .tar.gz file to expand it. This will create a folder called “htk”, and for the rest of this tutorial, I’m going to pretend it’s on your desktop.

  4. Open up Terminal.app (/Applications/Utilities/Terminal.app).

    • Any time you see a command inside a code block, that means “type the command into a terminal exactly”
  5. Enter the command cd ~/Desktop/htk

  6. Run ./configure -build=i686-apple-macos LDFLAGS=-L/opt/X11/lib CFLAGS='-I/opt/X11/include -I/usr/include/malloc'to configure the software for OS X. A major hat-tip to this post for helping me with that command.

    At this point, the HTK manual says you should be able to make all && make install. But it’s not that easy. If you run that command, you’ll get a couple of errors which look like:

    esignal.c:1184:25: error: use of undeclared identifier 'ARCH' architecture = ARCH;

    Translation: “I’m trying to prep the file HTKLib/esignal.c, but nobody told me what system architecture this code is gonna be run on. Unless I know that, I can’t build!” This is actually a problem with the way HTK is written, but luckily, we can fix it by manually specifying that the Architecture is “darwin” (which it always is, for OS X). A major hat-tip to this post for helping me figure out some of these issues.

  7. Open the HTKLib/esignal.c file in a code-friendly text editor. You can use Xcode, or my personal favorite TextMate 2.

  8. Find and change the below lines:

    Change Line 974: if (strcmp(architecture, ARCH) 0) /* native architecture */

    To: if (strcmp(architecture, 'darwin') 0) /* native architecture */

    Change Line 1184: architecture = ARCH;

    To: architecture = 'darwin';

  9. Now, let’s build! Run make all in the terminal window. Some warnings will pop up, but we don’t care.

  10. Now we’ll install it. Run make install

  11. Just to test, run LMerge. It’ll pop up a message about USAGE, and that’s fine. That just tells us it installed OK.

Whew. HTK is installed. That was the tough part. Now let’s install P2FA.

Step 2: Installing Penn Phonetics Lab Forced Aligner

This part’s easier!

  1. Download P2FA.
  2. Double-click the .tgz file to open it up, giving a “p2fa” folder.
  3. Move that folder someplace easy to find.

Done!

Step 3: Installing Sox

P2FA does depend on Sox to work. The easiest way to get Sox, by far, is using Homebrew, so we’ll do that. Homebrew is a great little program for easily and quickly installing all sorts of fun commandline tools. I love it.

  1. Open your terminal back up.
  2. Run ruby -e '$(curl -fsSL https://raw.github.com/Homebrew/homebrew/go/install)'(This command straight from the Homebrew Homepage)
  3. Once that’s done, install sox using brew install sox

Done!

Step 4: Setting P2FA up for your data and running it

Unfortunately, P2FA needs a particular format for your data to work. In my case, I had a bunch of files of people saying the exact same things, as prompted by a script. So, my sound files started with:

The word is men

The word is mint

Praat Download Mac

… and so forth for the other 318 words which they read in the script.

To force-align data like this:

Praat

  1. Make sure that any extraneous talk is trimmed out, such that the speech actually matches the script.

  2. Create a text file which it will be aligned against. To capture the above, this file would look like:

    {SL} {NS} sp THE sp WORD sp IS sp MEN {SL} {NS} sp THE sp WORD sp IS sp MINT {SL} {NS}

    … and then goes on to do the same thing for all the other ‘the word is (word)’ sentences. The {SL} stands for “silence”, and covers the silence after they finish the sentence. The {NS} means “noise”, which is there to pick up the click of the keyboard as they advance the slide. Then, each sp (small pause) is in case the person pauses again between words. In P2FA, these “small pauses” can be present or not, and they should be sprinkled liberally throughout your data. All words need to be capitalized.

    Save the file you’ve created. I’ll call it “alignscript.txt” in other examples.

  3. Make sure that all words are included in the dictionary. It’ll yell at you at runtime if you’ve asked it to align a word which isn’t in the dictionary, so, if you’re aligning non-words (or even odd, new words), you’ll need to add them. Let’s say you want to add “neighed”:

    1. To add a new word to dictionary, open the “model” folder, and then open “dict” in your text editor.

    2. Find the line for a word which rhymes with your new word, like “made”:

      MADE M EY1 D

    3. Modify the sounds for the new word:

      NEIGHED N EY1 D

  4. Downsample the file you’re looking to align using Praat. I’ve had great luck using the suggested 11,025 Hz sampling rate. Save this as a .wav file.

    • Remember, you can always use the Textgrid with the full-quality file later, the downsampled file is just temporary for alignment.
  5. Run the aligner, modifying the paths in the command to fit where you’ve got P2FA and your data. The command is: python /path/to/align.py sound_file.wav alignscript.txt output_name.TextGrid

    So, for my actual work, if I wanted to align the recording session file for a subject named “sarah”: ~/data/p2fa/align.py ~/data/sarah_session.wav ~/data/alignscript.txt ~/data/sarah_session.TextGrid

  6. Go have coffee. For a 15 minute recording, it takes around 10 minutes for the forced aligner to run on my (fairly recent) Mac.

  7. Open up the newly-generated .TextGrid file in Praat alongside the sound file and see how it did.

P2FA in Practice

So far, I’ve been really impressed with the results. It’s pretty good, with only one major error (missed word or complete mis-identification) in every two files. Individual sounds are missed more regularly (where it’ll cut off the /z/ in “meds” or the /n/ in “plan”). Vowel boundaries are off by 10 ms or so in around 1/3 of tokens.

I’ve been hand-correcting the data because I care a lot about those boundaries, but if I just wanted a measure at the center of the vowel, I wouldn’t even bother, as the vowel’s center is quite reliably in the center of the vowel span. Regardless of these issues, using P2FA with hand-correction, I’m able to beautifully annotate data in around 1/4 of the time it takes to do it by hand. It’s an absolutely excellent tool, and would recommend it to anybody.

So, I hope this was helpful, good luck, and good alignment!

Praat is a free and open source speech analyzer software app filed under graphics software and made available by Paul Boersma and David Weenink for Windows.

The review for Praat has not been completed yet, but it was tested by an editor here on a PC and a list of features has been compiled; see below.

How to download praat

Praat Download Free

If you would like to submit a review of this software download, we welcome your input and encourage you to submit us something!

Creates an interesting phonetician analysis of voices and speech


Praat is a piece of software that helps phoneticians analyze, synthesize, and manipulate speech.

Praat Tutorial

Praat enables you to create a source signal from scratch or from an existing speech signal, but also to create a filter or to extract it from an existing source. You can manipulate (change, adapt) both the source and the filter before doing the actual synthesis, which combines the two.

Features and highlights


  • Speech analysis: spectral analysis (spectrograms), pitch analysis, formant analysis, intensity analysis, jitter, shimmer, voice breaks
  • Cochleagram
  • Excitation pattern
  • Speech synthesis: from pitch, formant, and intensity, articulatory synthesis
  • Listening experiments: identification and discrimination tests
  • Labelling and segmentation: label intervals and time points on multiple tiers
  • Change pitch and duration contours
  • Filtering
  • Learning algorithms: feed forward neural networks
  • Statistics: multidimensional scaling
  • Principal component analysis
  • Graphics: high quality for your articles and thesis

Praat on 32-bit and 64-bit PCs

This download is licensed as freeware for the Windows (32-bit and 64-bit) operating system on a laptop or desktop PC from graphics software without restrictions. Praat 6.1.30 is available to all software users as a free download for Windows 10 PCs but also without a hitch on Windows 7 and Windows 8.

Compatibility with this speech analyzer software may vary, but will generally run fine under Microsoft Windows 10, Windows 8, Windows 8.1, Windows 7, Windows Vista and Windows XP on either a 32-bit or 64-bit setup. A separate x64 version may be available from Paul Boersma and David Weenink.

Filed under:

Praat Speech Analysis

  1. Praat Download
  2. Freeware Graphics Software
  3. Open source and GPL software
  4. Major release: Praat 6.1
  5. Speech Analyzing Software