Downloads:
316,992
Downloads of v 1.3.10:
2,392
Last Update:
25 Mar 2016
Package Maintainer(s):
Software Author(s):
- Peter Pawlowski
Tags:
foobar2000 media player admin- Software Specific:
- Software Site
- Software License
- Package Specific:
- Possible 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.3.10 | Updated: 25 Mar 2016
- Software Specific:
- Software Site
- Software License
- Package Specific:
- Possible Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
316,992
Downloads of v 1.3.10:
2,392
Maintainer(s):
Software Author(s):
- Peter Pawlowski
foobar2000 1.3.10
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
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.3.10 --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.3.10'" [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.3.10'"
$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.3.10'
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.3.10'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller foobar2000
{
Name = "foobar2000"
Version = "1.3.10"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'foobar2000':
ensure => '1.3.10',
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 24 Jun 2016.
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.
# Redsandro - I will just include the required module in the package as long as it is not merged with Chocolatey
# Some files have a changing element/hash in the download path, making an automated download harder.
# This file gets the correct download url from a download page with a regular expression.
# Good for e.g. Foobar2000, Rename Master, etc
#
# Usage: Get-FilenameFromRegex download_page find replace
# Examples:
# Get-FilenameFromRegex "http://www.joejoesoft.com/vcms/hot/userupload/8/files/rmv303.zip" '/cms/file.php\?f=userupload/8/files/rmv303.zip&c=([\w\d]+)' 'http://www.joejoesoft.com/sim/$1/userupload/8/files/rmv303.zip'
#
# Remember to escape regex characters, like the question mark in the querystring
function Get-FilenameFromRegex {
param(
[string]$source_url,
[string]$find,
[string]$replace
)
## Example # $source_url = "http://www.joejoesoft.com/vcms/hot/userupload/8/files/rmv303.zip"
## Example # $find = '/cms/file.php\?f=userupload/8/files/rmv303.zip&c=([\w\d]+)'
## Example # $replace = 'http://www.joejoesoft.com/sim/$1/userupload/8/files/rmv303.zip'
$ErrorActionPreference = "Stop"
# Download and open download page
$wc = new-object system.net.webclient
$wc.UseDefaultCredentials = $true
$html = $wc.downloadstring($source_url)
$nothing =''+$html -cmatch $find
#if ($matches -eq $null) {
# throw "No matches found"
#}
# Replace Match-references with previous matches: $1 $2 -> $matches[1] $matches[2]
#$download_url = $replace -creplace "\$`(\d+)",$matches[$1]
# This one is not working :(
# I have a temporary fix that only allows ONE match. However, in most cases we only need one match.
$download_url = $replace -creplace "\$`(\d+)",$matches[1]
return $download_url
}
Log in or click on link to see number of positives.
- foobar2000.1.3.10.nupkg (1e773a5d04ea) - ## / 58
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 |
This package has no dependencies.
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.