Welcome to the Chocolatey Community Package Repository! The packages found in this section of the site are provided, maintained, and moderated by the community.
Moderation
Every version of each package undergoes a rigorous moderation process before it goes live that typically includes:
- Security, consistency, and quality checking
- Installation testing
- Virus checking through VirusTotal
- Human moderators who give final review and sign off
More detail at Security and Moderation.
Organizational Use
If you are an organization using Chocolatey, we want your experience to be fully reliable. Due to the nature of this publicly offered repository, reliability cannot be guaranteed. Packages offered here are subject to distribution rights, which means they may need to reach out further to the internet to the official locations to download files at runtime.
Fortunately, distribution rights do not apply for internal use. With any edition of Chocolatey (including the free open source edition), you can host your own packages and cache or internalize existing community packages.
Disclaimer
Your use of the packages on this site means you understand they are not supported or guaranteed in any way. Learn more...
- Passing
- Failing
- Pending
- Unknown / Exempted

Downloads:
27,581
Downloads of v 6.0.43:
160
Last Update:
08 Sep 2018
Package Maintainer(s):
Software Author(s):
- Paul Boersma
- David Weenink
Tags:
praat sound visualization speech phonetics phonology analysis- Software Specific:
- Software Site
- Software License
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download

Praat
This is not the latest version of Praat available.
- Software Specific:
- Software Site
- Software License
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
27,581
Downloads of v 6.0.43:
160
Maintainer(s):
Software Author(s):
- Paul Boersma
- David Weenink
Edit Package
To edit the metadata for a package, please upload an updated version of the package.
Chocolatey's Community Package Repository currently does not allow updating package metadata on the website. This helps ensure that the package itself (and the source used to build the package) remains the one true source of package metadata.
This does require that you increment the package version.
Praat 6.0.43
This is not the latest version of Praat available.
All Checks are Passing
2 Passing Test
To install Praat, run the following command from the command line or from PowerShell:
To upgrade Praat, run the following command from the command line or from PowerShell:
To uninstall Praat, run the following command from the command line or from PowerShell:
NOTE: This applies to both open source and commercial editions of Chocolatey.
1. Ensure you are set for organizational deployment
Please see the organizational deployment guide
2. Get the package into your environment-
Open Source or Commercial:
- Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://chocolatey.org/api/v2. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
- You can also just download the package and push it to a repository Download
-
Open Source
- Download the Package Download
- Follow manual internalization instructions
-
Package Internalizer (C4B)
- Run
choco download praat --internalize --version=6.0.43 --source=https://chocolatey.org/api/v2
(additional options) - Run
choco push --source="'http://internal/odata/repo'"
for package and dependencies - Automate package internalization
- Run
3. Enter your internal repository url
(this should look similar to https://chocolatey.org/api/v2)
4. Choose your deployment method:
choco upgrade praat -y --source="'STEP 3 URL'" [other options]
See options you can pass to upgrade.
See best practices for scripting.
Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.
If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:
choco upgrade praat -y --source="'STEP 3 URL'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Ensure praat installed
win_chocolatey:
name: praat
state: present
version: 6.0.43
source: STEP 3 URL
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
Coming early 2020! Central Managment Reporting available now! More information...
chocolatey_package 'praat' do
action :install
version '6.0.43'
source 'STEP 3 URL'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
Chocolatey::Ensure-Package
(
Name: praat,
Version: 6.0.43,
Source: STEP 3 URL
);
Requires Otter Chocolatey Extension. See docs at https://inedo.com/den/otter/chocolatey.
cChocoPackageInstaller praat
{
Name = 'praat'
Ensure = 'Present'
Version = '6.0.43'
Source = 'STEP 3 URL'
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'praat':
provider => 'chocolatey',
ensure => '6.0.43',
source => 'STEP 3 URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
salt '*' chocolatey.install praat version="6.0.43" source="STEP 3 URL"
See docs at https://docs.saltstack.com/en/latest/ref/modules/all/salt.modules.chocolatey.html.
5. If applicable - Chocolatey configuration/installation
See infrastructure management matrix for Chocolatey configuration elements and examples.
This package was approved as a trusted package on 07 Oct 2018.
PRAAT is a very flexible tool to do speech analysis. It offers a wide range of standard and non-standard procedures, including spectrographic analysis, articulatory synthesis, and neural networks.
$packageName = 'praat'
$url = 'http://www.fon.hum.uva.nl/praat/praat6043_win32.zip'
$url64 = 'http://www.fon.hum.uva.nl/praat/praat6043_win64.zip'
$fileName = "Praat.exe"
$linkName = "Praat.lnk"
$destdir = $(Split-Path -parent $MyInvocation.MyCommand.Definition)
Install-ChocolateyZipPackage "$packageName" "$url" "$destdir" "$url64" -Checksum 4db497f8049a3c1767d887b697b4592640bfd05f6356966e99e477f48d1463dc -ChecksumType 'sha256' -Checksum64 b4ae697a9cf16d5fbae1a059220290edd042719fccc4580cdeae113a25cee9b3 -ChecksumType64 'sha256'
#install start menu shortcut
$programs = [environment]::GetFolderPath([environment+specialfolder]::Programs)
$shortcutFilePath = Join-Path $programs $linkName
$targetPath = Join-Path $destdir $fileName
Install-ChocolateyShortcut -shortcutFilePath $shortcutFilePath -targetPath $targetPath
#make usable in commandline
Install-ChocolateyPath $destdir
$linkName = "Praat.lnk"
$programs = [environment]::GetFolderPath([environment+specialfolder]::Programs)
$shortcutFilePath = Join-Path $programs $linkName
if(Test-Path $shortcutFilePath) {
del $shortcutFilePath
}
Log in or click on link to see number of positives.
- praat.6.0.43.nupkg (d6c4728df21d) - ## / 60
- praat6043_win64.zip (b4ae697a9cf1) - ## / 62
- praat6043_win32.zip (4db497f8049a) - ## / 62
In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).
Chocolatey Pro provides runtime protection from possible malware.
Version | Downloads | Last Updated | Status |
---|---|---|---|
Praat 6.1.38 | 171 | Tuesday, January 12, 2021 | Approved |
Praat 6.1.37 | 110 | Sunday, December 27, 2020 | Approved |
Praat 6.1.36 | 111 | Saturday, December 12, 2020 | Approved |
Praat 6.1.34 | 116 | Friday, November 27, 2020 | Approved |
Praat 6.1.31 | 112 | Saturday, November 14, 2020 | Approved |
Praat 6.1.28 | 141 | Sunday, October 25, 2020 | Approved |
Praat 6.1.26 | 147 | Sunday, October 11, 2020 | Approved |
Praat 6.1.22 | 174 | Monday, September 28, 2020 | Approved |
Praat 6.1.16 | 519 | Tuesday, June 9, 2020 | Approved |
Praat 6.1.14 | 225 | Saturday, May 2, 2020 | Approved |
Praat 6.1.10 | 220 | Sunday, April 5, 2020 | Approved |
Praat 6.1.09 | 365 | Wednesday, January 29, 2020 | Approved |
Praat 6.1.08 | 284 | Friday, December 20, 2019 | Approved |
Praat 6.1.06 | 312 | Thursday, November 21, 2019 | Approved |
Praat 6.1.05 | 270 | Saturday, October 26, 2019 | Approved |
Praat 6.1.04 | 254 | Saturday, October 12, 2019 | Approved |
Praat 6.1.03 | 769 | Saturday, September 14, 2019 | Approved |
Praat 6.1.02 | 467 | Tuesday, August 27, 2019 | Approved |
Praat 6.1 | 404 | Saturday, July 20, 2019 | Approved |
Praat 6.0.56 | 284 | Saturday, June 29, 2019 | Approved |
Praat 6.0.55 | 256 | Tuesday, June 18, 2019 | Approved |
Praat 6.0.53 | 278 | Saturday, June 1, 2019 | Approved |
Praat 6.0.52 | 218 | Thursday, May 16, 2019 | Approved |
Praat 6.0.51 | 229 | Tuesday, April 30, 2019 | Approved |
Praat 6.0.50 | 239 | Monday, April 8, 2019 | Approved |
Praat 6.0.49 | 230 | Saturday, March 16, 2019 | Approved |
Praat 6.0.48 | 247 | Thursday, February 28, 2019 | Approved |
Praat 6.0.46 | 292 | Sunday, January 6, 2019 | Approved |
Praat 6.0.43.20181008 | 342 | Monday, October 8, 2018 | Approved |
Praat 6.0.43 | 160 | Saturday, September 8, 2018 | Approved |
Praat 6.0.42 | 251 | Thursday, August 16, 2018 | Approved |
Praat 6.0.41 | 173 | Tuesday, August 7, 2018 | Approved |
Praat 6.0.40 | 357 | Saturday, May 12, 2018 | Approved |
Praat 6.0.39 | 346 | Tuesday, April 3, 2018 | Approved |
Praat 6.0.37 | 360 | Tuesday, February 20, 2018 | Approved |
Praat 6.0.35 | 501 | Tuesday, October 17, 2017 | Approved |
Praat 6.0.34 | 282 | Tuesday, October 10, 2017 | Approved |
Praat 6.0.33 | 316 | Tuesday, September 26, 2017 | Approved |
Praat 6.0.32 | 311 | Sunday, September 17, 2017 | Approved |
Praat 6.0.31 | 352 | Monday, August 21, 2017 | Approved |
Praat 6.0.30 | 338 | Saturday, July 22, 2017 | Approved |
Praat 6.0.29 | 365 | Wednesday, May 24, 2017 | Approved |
Praat 6.0.28 | 355 | Thursday, March 23, 2017 | Approved |
Praat 6.0.27 | 290 | Saturday, March 18, 2017 | Approved |
Praat 6.0.26 | 377 | Thursday, March 2, 2017 | Approved |
Praat 6.0.25 | 386 | Sunday, February 12, 2017 | Approved |
Praat 6.0.24 | 343 | Sunday, January 29, 2017 | Approved |
Praat 6.0.23 | 355 | Monday, December 12, 2016 | Approved |
Praat 6.0.22 | 312 | Wednesday, November 16, 2016 | Approved |
Praat 6.0.21 | 385 | Saturday, October 8, 2016 | Approved |
Praat 6.0.20 | 383 | Saturday, September 3, 2016 | Approved |
Praat 6.0.19.2 | 357 | Monday, August 22, 2016 | Approved |
Praat 6.0.19 | 328 | Monday, June 13, 2016 | Approved |
Praat 6.0.18 | 301 | Monday, May 23, 2016 | Approved |
Praat 6.0.17 | 305 | Thursday, April 21, 2016 | Approved |
Praat 6.0.16 | 352 | Wednesday, April 6, 2016 | Approved |
Praat 6.0.15 | 363 | Wednesday, March 23, 2016 | Approved |
Praat 6.0.14 | 379 | Thursday, February 11, 2016 | Approved |
Praat 6.0.13 | 318 | Sunday, January 31, 2016 | Approved |
Praat 6.0.12 | 316 | Sunday, January 24, 2016 | Approved |
Praat 6.0.11 | 301 | Monday, January 18, 2016 | Approved |
Praat 6.0.10 | 315 | Friday, January 8, 2016 | Approved |
Praat 6.0.09 | 281 | Friday, January 1, 2016 | Approved |
Praat 6.0.08 | 306 | Monday, December 7, 2015 | Approved |
Praat 6.0.06 | 256 | Sunday, November 29, 2015 | Approved |
Praat 6.0.05 | 351 | Sunday, November 8, 2015 | Approved |
Praat 6.0.04 | 296 | Sunday, November 1, 2015 | Approved |
Praat 6.0.03 | 276 | Saturday, October 31, 2015 | Approved |
Praat 6.0.02 | 316 | Friday, October 30, 2015 | Approved |
Praat 6.0 | 354 | Thursday, October 29, 2015 | Approved |
Praat 5.4.22 | 265 | Thursday, October 8, 2015 | Approved |
Praat 5.4.21 | 304 | Thursday, October 1, 2015 | Approved |
Praat 5.4.20 | 287 | Sunday, September 27, 2015 | Approved |
Praat 5.4.19 | 379 | Thursday, September 17, 2015 | Approved |
Praat 5.4.18 | 323 | Monday, September 7, 2015 | Approved |
Praat 5.4.17 | 299 | Friday, August 21, 2015 | Approved |
Praat 5.4.16 | 312 | Sunday, August 16, 2015 | Approved |
Praat 5.4.15 | 322 | Saturday, August 1, 2015 | Approved |
Praat 5.4.14 | 264 | Friday, July 24, 2015 | Approved |
Praat 5.4.13 | 315 | Wednesday, July 22, 2015 | Approved |
Praat 5.4.12 | 319 | Friday, July 10, 2015 | Approved |
Praat 5.4.11 | 262 | Wednesday, July 8, 2015 | Approved |
Praat 5.4.10 | 333 | Sunday, June 28, 2015 | Approved |
Praat 5.4.09 | 349 | Monday, June 1, 2015 | Approved |
Praat 5.4.08 | 405 | Tuesday, March 24, 2015 | Approved |
Praat 5.4.07 | 323 | Sunday, March 22, 2015 | Approved |
Praat 5.4.06 | 353 | Saturday, February 21, 2015 | Approved |
Praat 5.4.05 | 327 | Wednesday, February 18, 2015 | Approved |
Praat 5.4.04 | 355 | Monday, December 29, 2014 | Approved |
Praat 5.4.03 | 324 | Saturday, December 27, 2014 | Approved |
This package has no dependencies.
Ground Rules:
- This discussion is only about Praat and the Praat package. If you have feedback for Chocolatey, please contact the Google Group.
- This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
- The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
- Tell us what you love about the package or Praat, or tell us what needs improvement.
- Share your experiences with the package, or extra configuration or gotchas that you've found.
- If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.