Skip to content

Commit

Permalink
Package download wavpack
Browse files Browse the repository at this point in the history
  • Loading branch information
tunisiano187 committed Apr 11, 2024
1 parent 51f9a99 commit 64dab67
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 0 deletions.
11 changes: 11 additions & 0 deletions automatic/wavpack/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
$packageName = 'wavpack'
$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$url = 'http://www.wavpack.com/wavpack-4.80.0.zip'
$checksum = '6b013e4678ee1ebdf8ca8fdf0947e0d18b440022'
$checksumType = 'sha1'

Install-ChocolateyZipPackage -PackageName "$packageName" `
-Url "$url" `
-UnzipLocation "$toolsDir" `
-Checksum "$checksum" `
-ChecksumType "$checksumType"
34 changes: 34 additions & 0 deletions automatic/wavpack/wavpack.nuspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
<?xml version="1.0"?>
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>wavpack</id>
<version>4.80.0</version>
<title>WavPack</title>
<authors>WavPack</authors>
<owners>dtgm</owners>
<licenseUrl>http://www.opus-codec.org/license/</licenseUrl>
<projectUrl>http://www.wavpack.com/</projectUrl>
<iconUrl>https://cdn.rawgit.com/dtgm/chocolatey-packages/e613051da04b6f33809e8e260da4443f62a340dc/icons/wavpack.png</iconUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>WavPack is a completely open audio compression format providing lossless, high-quality lossy, and a unique hybrid compression mode. Although the technology is loosely based on previous versions of WavPack, the new version 4 format has been designed from the ground up to offer unparalleled performance and functionality.

In the default lossless mode WavPack acts just like a WinZip compressor for audio files. However, unlike MP3 or WMA encoding which can affect the sound quality, not a single bit of the original information is lost, so there's no chance of degradation. This makes lossless mode ideal for archiving audio material or any other situation where quality is paramount. The compression ratio depends on the source material, but generally is between 30% and 70%.

The hybrid mode provides all the advantages of lossless compression with an additional bonus. Instead of creating a single file, this mode creates both a relatively small, high-quality lossy file that can be used all by itself, and a "correction" file that (when combined with the lossy file) provides full lossless restoration. For some users this means never having to choose between lossless and lossy compression!

WavPack employs only well known, public domain techniques (i.e., linear prediction with LMS adaptation, Elias and Golomb codes) in its implementation. Methods and algorithms that have ever been patented (e.g., arithmetic coding, LZW compression) are specifically avoided. This ensures that WavPack encoders and decoders will remain open and royalty-free.

[Manual](http://www.wavpack.com/wavpack_doc.html)
[Forum](http://www.hydrogenaud.io/forums/index.php?showforum=68)

[Software support](http://www.wavpack.com/index.html#Software)
[Hardware support](http://www.wavpack.com/index.html#Hardware)</description>
<summary>Hybrid lossless audio compression</summary>
<releaseNotes>[Changelog](http://www.wavpack.com/changelog.txt)</releaseNotes>
<copyright>© WavPack</copyright>
<tags>cli audio compression archive</tags>
<projectSourceUrl>http://www.wavpack.com/downloads.html#sources</projectSourceUrl>
<packageSourceUrl>https://github.com/dtgm/chocolatey-packages/tree/master/automatic/_output/wavpack/4.80.0</packageSourceUrl>
<docsUrl>http://www.wavpack.com/downloads.html#documentation</docsUrl>
</metadata>
</package>

0 comments on commit 64dab67

Please sign in to comment.