Downloads:
316,992
Downloads of v 1.4:
6,829
Last Update:
24 Jul 2018
Package Maintainer(s):
Software Author(s):
- Peter Pawlowski
Tags:
foobar2000 media player admin- Software Specific:
- Software Site
- Software License
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
foobar2000
This is not the latest version of foobar2000 available.
- 1
- 2
- 3
1.4 | Updated: 24 Jul 2018
- 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:
316,992
Downloads of v 1.4:
6,829
Maintainer(s):
Software Author(s):
- Peter Pawlowski
foobar2000 1.4
This is not the latest version of foobar2000 available.
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Peter Pawlowski. The inclusion of Peter Pawlowski trademark(s), if any, upon this webpage is solely to identify Peter Pawlowski goods or services and not for commercial purposes.
- 1
- 2
- 3
Some Checks Have Failed or Are Not Yet Complete
Not All Tests Have Passed
Validation Testing Passed
Verification Testing Passed
DetailsScan Testing Resulted in Flagged:
This package was submitted (and approved) prior to automated virus scanning integration into the package moderation processs.
We recommend clicking the "Details" link to make your own decision on installing this package.
Deployment Method: Individual Install, Upgrade, & Uninstall
To install foobar2000, run the following command from the command line or from PowerShell:
To upgrade foobar2000, run the following command from the command line or from PowerShell:
To uninstall foobar2000, run the following command from the command line or from PowerShell:
Deployment Method:
This applies to both open source and commercial editions of Chocolatey.
1. Enter Your Internal Repository Url
(this should look similar to https://community.chocolatey.org/api/v2/)
2. Setup Your Environment
1. Ensure you are set for organizational deployment
Please see the organizational deployment guide
2. Get the package into your environment
Option 1: Cached Package (Unreliable, Requires Internet - Same As Community)-
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://community.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: (additional options)
choco download foobar2000 --internalize --version=1.4 --source=https://community.chocolatey.org/api/v2/
-
For package and dependencies run:
choco push --source="'INTERNAL REPO URL'"
- Automate package internalization
-
Run: (additional options)
3. Copy Your Script
choco upgrade foobar2000 -y --source="'INTERNAL REPO URL'" --version="'1.4'" [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 foobar2000 -y --source="'INTERNAL REPO URL'" --version="'1.4'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Install foobar2000
win_chocolatey:
name: foobar2000
version: '1.4'
source: INTERNAL REPO URL
state: present
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'foobar2000' do
action :install
source 'INTERNAL REPO URL'
version '1.4'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller foobar2000
{
Name = "foobar2000"
Version = "1.4"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'foobar2000':
ensure => '1.4',
provider => 'chocolatey',
source => 'INTERNAL REPO URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
4. If applicable - Chocolatey configuration/installation
See infrastructure management matrix for Chocolatey configuration elements and examples.
This package was approved as a trusted package on 25 Jul 2018.
foobar2000 is an advanced freeware audio player for the Windows platform. Some of the basic features include full unicode support, ReplayGain support and native support for several popular audio formats.
$ErrorActionPreference = 'Stop';
$packageName = 'foobar2000'
[array]$key = Get-UninstallRegistryKey -SoftwareName "foobar2000*"
if ($key.Count -eq 1) {
$key | % {
$packageArgs = @{
packageName = $packageName
fileType = 'exe'
silentArgs = '/S'
validExitCodes= @(0)
file = $key.InstallLocation + "\" + "uninstall.exe"
}
Uninstall-ChocolateyPackage @packageArgs
}
} elseif ($key.Count -eq 0) {
Write-Warning "$packageName has already been uninstalled by other means."
} elseif ($key.Count -gt 1) {
Write-Warning "$($key.Count) matches found!"
Write-Warning "To prevent accidental data loss, no programs will be uninstalled."
Write-Warning "Please alert package maintainer the following keys were matched:"
$key | % {Write-Warning "- $($_.DisplayName)"}
}
From: https://www.foobar2000.org/license
LICENSE
Foobar2000 audio player
Copyright © 2001-2017, Peter Pawlowski
Portions copyright © 2005-2006 Holger Stenger
Portions copyright © 2003-2005 Gian-Carlo Pascutto
Icons copyright © 2007 Florian Trendelenburg
Installer script and button icons copyright © 2003-2017 Janne Hyvärinen
All rights reserved.
Redistribution and use in binary form, without modification, are permitted provided that the following conditions are met:
Only unmodified installers can be redistributed; redistribution of foobar2000 binaries in any other form is not permitted.
Neither the name of the author nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
FFmpeg
This software uses code of FFmpeg licensed under the LGPLv2.1 and its source can be downloaded here.
Apple Lossless Audio Codec
Copyright © 2011 Apple Inc. All rights reserved.
Licensed under Apache License 2.0.
Musepack decoding library
Copyright © 1999-2011 Buschmann/Klemm/Piecha/Wolf/MDT
WAVPACK Hybrid Lossless Wavefile Compressor
Copyright © 1998-2009 Conifer Software
libogg, libspeex and libopus libraries
Copyright © 2002-2013 Xiph.Org Foundation
FLAC - Free Lossless Audio Codec
Copyright © 2000-2009 Josh Coalson, 2011-2016 Xiph.Org Foundation
SuperEQ library
Copyright © Naoki Shibata, home page
Distributed under the terms of LGPL v2.1 - download source code
libebur128
Copyright © 2011 Jan Kokemüller
zlib general purpose compression library
Copyright © 1995-2010 Jean-loup Gailly and Mark Adler
UnRAR © Alexander L. Roshal
VERIFICATION
Verification is intended to assist the Chocolatey moderators and community
in verifying that this package's contents are trustworthy.
FIle foobar2000_v1.4.exe must match all of the following checksums:
MD5: F44619426A392DEC0A600481C157B7D2
SHA1: E5C57CF7AFAFFD1F7CF91D8304A4DF9133561BEE
SHA256: 7C048FAECFEC79F9EC2B332B2C68B25E0D0219B47A7C679FE56F2EC05686A96A
Log in or click on link to see number of positives.
- foobar2000.1.4.nupkg (120036702b6e) - ## / 62
- foobar2000_v1.4.exe (7c048faecfec) - ## / 66
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.
Add to Builder | Version | Downloads | Last Updated | Status |
---|---|---|---|---|
foobar2000 2.1.6 | 5866 | Friday, September 20, 2024 | Approved | |
foobar2000 2.1.5 | 8439 | Friday, May 3, 2024 | Approved | |
foobar2000 2.1.4 | 3914 | Sunday, April 14, 2024 | Approved | |
foobar2000 2.1.3 | 4557 | Friday, March 22, 2024 | Approved | |
foobar2000 2.1.2 | 6002 | Wednesday, January 31, 2024 | Approved | |
foobar2000 2.1.1 | 4202 | Wednesday, January 17, 2024 | Approved | |
foobar2000 2.1 | 5072 | Tuesday, December 19, 2023 | Approved | |
foobar2000 2.0 | 13725 | Thursday, April 27, 2023 | Approved | |
foobar2000 1.6.16 | 9362 | Saturday, January 14, 2023 | Approved | |
foobar2000 1.6.14 | 6926 | Thursday, November 24, 2022 | Approved | |
foobar2000 1.6.13 | 5674 | Monday, October 17, 2022 | Approved | |
foobar2000 1.6.12 | 6479 | Tuesday, August 30, 2022 | Approved | |
foobar2000 1.6.11 | 9228 | Thursday, May 5, 2022 | Approved | |
foobar2000 1.6.10 | 8177 | Tuesday, February 15, 2022 | Approved | |
foobar2000 1.6.9 | 6504 | Tuesday, January 4, 2022 | Approved | |
foobar2000 1.6.8 | 7260 | Wednesday, November 10, 2021 | Approved | |
foobar2000 1.6.7 | 8858 | Wednesday, August 11, 2021 | Approved | |
foobar2000 1.6.6 | 8749 | Tuesday, May 18, 2021 | Approved | |
foobar2000 1.6.5 | 6595 | Wednesday, April 7, 2021 | Approved | |
foobar2000 1.6.4.20210213 | 7121 | Saturday, February 13, 2021 | Approved | |
foobar2000 1.6.4 | 3976 | Tuesday, February 2, 2021 | Approved | |
foobar2000 1.6.3 | 4183 | Tuesday, January 19, 2021 | Approved | |
foobar2000 1.6.2 | 8828 | Friday, October 23, 2020 | Approved | |
foobar2000 1.6.1 | 5069 | Saturday, September 26, 2020 | Approved | |
foobar2000 1.6 | 1997 | Tuesday, September 22, 2020 | Approved | |
foobar2000 1.5.5 | 8024 | Tuesday, June 30, 2020 | Approved | |
foobar2000 1.5.4 | 6366 | Tuesday, May 12, 2020 | Approved | |
foobar2000 1.5.3 | 5786 | Wednesday, April 1, 2020 | Approved | |
foobar2000 1.5.2.20200226 | 5452 | Wednesday, February 26, 2020 | Approved | |
foobar2000 1.5.2 | 2407 | Wednesday, February 19, 2020 | Approved | |
foobar2000 1.5.1 | 5463 | Tuesday, December 31, 2019 | Approved | |
foobar2000 1.5.0 | 4097 | Thursday, December 5, 2019 | Approved | |
foobar2000 1.5-beta8 | 338 | Wednesday, August 7, 2019 | Approved | |
foobar2000 1.5-beta7 | 220 | Wednesday, August 7, 2019 | Approved | |
foobar2000 1.5-beta5 | 260 | Wednesday, July 17, 2019 | Approved | |
foobar2000 1.5-beta2 | 286 | Thursday, July 11, 2019 | Approved | |
foobar2000 1.5-beta16 | 214 | Sunday, September 22, 2019 | Approved | |
foobar2000 1.5-beta12 | 184 | Saturday, September 7, 2019 | Approved | |
foobar2000 1.5-beta11 | 217 | Friday, August 23, 2019 | Approved | |
foobar2000 1.5-beta10 | 194 | Monday, August 19, 2019 | Approved | |
foobar2000 1.4.8 | 6323 | Sunday, September 22, 2019 | Approved | |
foobar2000 1.4.6 | 6170 | Monday, July 8, 2019 | Approved | |
foobar2000 1.4.6-beta2 | 243 | Wednesday, July 3, 2019 | Approved | |
foobar2000 1.4.6-beta1 | 198 | Monday, July 1, 2019 | Approved | |
foobar2000 1.4.5 | 2117 | Monday, July 1, 2019 | Approved | |
foobar2000 1.4.4 | 5090 | Tuesday, May 7, 2019 | Approved | |
foobar2000 1.4.3 | 4881 | Monday, March 18, 2019 | Approved | |
foobar2000 1.4.2 | 4402 | Saturday, February 9, 2019 | Approved | |
foobar2000 1.4.1 | 5815 | Wednesday, November 21, 2018 | Approved | |
foobar2000 1.4 | 6829 | Tuesday, July 24, 2018 | Approved | |
foobar2000 1.3.19 | 3599 | Sunday, June 24, 2018 | Approved | |
foobar2000 1.3.18 | 2509 | Monday, June 11, 2018 | Approved | |
foobar2000 1.3.17 | 6618 | Thursday, December 14, 2017 | Approved | |
foobar2000 1.3.16 | 5526 | Monday, July 10, 2017 | Approved | |
foobar2000 1.3.15 | 3328 | Friday, April 7, 2017 | Approved | |
foobar2000 1.3.14 | 2471 | Saturday, March 4, 2017 | Approved | |
foobar2000 1.3.13 | 2671 | Friday, December 16, 2016 | Approved | |
foobar2000 1.3.12 | 576 | Friday, December 16, 2016 | Approved | |
foobar2000 1.3.11 | 6631 | Tuesday, August 23, 2016 | Approved | |
foobar2000 1.3.10 | 2392 | Friday, March 25, 2016 | Approved | |
foobar2000 1.3.9 | 2934 | Monday, November 2, 2015 | Approved | |
foobar2000 1.3.8.20150701 | 2506 | Wednesday, July 1, 2015 | Approved | |
foobar2000 1.3.8 | 2113 | Thursday, March 26, 2015 | Approved | |
foobar2000 1.3.7 | 1815 | Wednesday, January 14, 2015 | Approved | |
foobar2000 1.3.6 | 1424 | Saturday, November 29, 2014 | Approved | |
foobar2000 1.3.5 | 1248 | Thursday, October 30, 2014 | Approved | |
foobar2000 1.3.4 | 1099 | Friday, October 10, 2014 | Approved | |
foobar2000 1.3.3 | 1533 | Thursday, July 17, 2014 | Approved | |
foobar2000 1.3.2 | 1281 | Friday, April 11, 2014 | Approved | |
foobar2000 1.3.1 | 1086 | Friday, January 24, 2014 | Approved | |
foobar2000 1.3 | 710 | Saturday, December 28, 2013 | Approved | |
foobar2000 1.2.9 | 1072 | Wednesday, July 10, 2013 | Approved | |
foobar2000 1.2.8 | 637 | Tuesday, June 18, 2013 | Approved | |
foobar2000 1.2.7 | 565 | Tuesday, June 18, 2013 | Approved | |
foobar2000 1.2.6.20130618 | 539 | Tuesday, June 18, 2013 | Approved | |
foobar2000 1.2.6.20130531 | 600 | Friday, May 31, 2013 | Approved | |
foobar2000 1.2.6.20130530 | 544 | Thursday, May 30, 2013 | Approved | |
foobar2000 1.2.6 | 633 | Saturday, May 4, 2013 | Approved | |
foobar2000 1.2.5 | 537 | Sunday, April 21, 2013 | Approved | |
foobar2000 1.2.4 | 565 | Saturday, March 30, 2013 | Approved | |
foobar2000 1.2.3 | 648 | Wednesday, February 13, 2013 | Approved | |
foobar2000 1.2.2 | 593 | Saturday, January 19, 2013 | Approved | |
foobar2000 1.2.1 | 550 | Saturday, January 12, 2013 | Approved | |
foobar2000 1.2 | 544 | Sunday, December 30, 2012 | Approved | |
foobar2000 1.1.18 | 542 | Tuesday, November 27, 2012 | Approved | |
foobar2000 1.1.17 | 558 | Saturday, November 17, 2012 | Approved | |
foobar2000 1.1.16 | 586 | Saturday, October 27, 2012 | Approved | |
foobar2000 1.1.15 | 607 | Sunday, September 16, 2012 | Approved | |
foobar2000 1.1.14.20120904 | 521 | Tuesday, September 4, 2012 | Approved | |
foobar2000 1.1.14.20120826 | 539 | Sunday, August 26, 2012 | Approved | |
foobar2000 1.1.13 | 565 | Friday, June 8, 2012 | Approved | |
foobar2000 1.1.12.20120528 | 505 | Monday, May 28, 2012 | Approved | |
foobar2000 1.1.11 | 532 | Monday, February 6, 2012 | Approved | |
foobar2000 1.1.10 | 505 | Monday, December 5, 2011 | Approved | |
foobar2000 1.1.7 | 558 | Tuesday, August 23, 2011 | Approved | |
foobar2000 1.1.6 | 538 | Tuesday, August 23, 2011 | Approved |
-
- chocolatey-core.extension (≥ 1.0.4)
Ground Rules:
- This discussion is only about foobar2000 and the foobar2000 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 foobar2000, 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.