Tests
Suites
Latest Results
Search
Register
Login
Popular Tests
Timed Linux Kernel Compilation
SVT-AV1
7-Zip Compression
Stockfish
FFmpeg
x265
Newest Tests
Rustls
LiteRT
WarpX
Epoch
Valkey
Whisperfile
Recently Updated Tests
Mobile Neural Network
ACES DGEMM
NWChem
SuperTuxKart
ASTC Encoder
SVT-AV1
New & Recently Updated Tests
Recently Updated Suites
Database Test Suite
Machine Learning
Steam
New & Recently Updated Suites
Component Benchmarks
CPUs / Processors
GPUs / Graphics
OpenGL
Disks / Storage
Motherboards
File-Systems
Operating Systems
OpenBenchmarking.org
Corporate / Organization Info
Bug Reports / Feature Requests
WavPack Audio Encoding 1.4.1
pts/encode-wavpack-1.4.1
- 20 December 2020 -
Enable Windows build.
downloads.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.2.0m2--> <PhoronixTestSuite> <Downloads> <Package> <URL>http://github.com/dbry/WavPack/archive/5.3.0.tar.gz</URL> <MD5>ab0fa7086790b4c0e7a99ff3237b5ff6</MD5> <SHA256>361ca0f4970c1e86b47fb8c3796693048306a9c0ae4c96191d7619aaa8b26828</SHA256> <FileName>WavPack-5.3.0.tar.gz</FileName> <FileSize>2042463</FileSize> </Package> <Package> <URL>http://github.com/dbry/WavPack/releases/download/5.3.0/wavpack-5.3.0-x64.zip</URL> <MD5>608f692e9dc1889584cf2b632039aab6</MD5> <SHA256>9c591e397b73fa5ac8373c1715e2ebbb88260b1ad0c4c250491a5563abd4e8d7</SHA256> <FileName>wavpack-5.3.0-x64.zip</FileName> <FileSize>488958</FileSize> <PlatformSpecific>Windows</PlatformSpecific> </Package> </Downloads> </PhoronixTestSuite>
install.sh
#!/bin/sh tar -xf WavPack-5.3.0.tar.gz cd WavPack-5.3.0 mkdir build cd build cmake .. make -j $NUM_CPU_CORES echo $? > ~/install-exit-status cd ~ echo "#!/bin/sh ./WavPack-5.3.0/build/wavpack -q -r -hhx3 -o out.wv \$TEST_EXTENDS/pts-trondheim.wav > /dev/null 2>&1 echo \$? > ~/test-exit-status" > encode-wavpack chmod +x encode-wavpack
install_windows.sh
#!/bin/sh unzip -o wavpack-5.3.0-x64.zip cp $TEST_EXTENDS/pts-trondheim.wav pts-trondheim.wav chmod +x wavpack.exe echo "#!/bin/sh ./wavpack.exe -q -r -hhx3 -y pts-trondheim.wav echo \$? > ~/test-exit-status" > encode-wavpack chmod +x encode-wavpack
interim.sh
#!/bin/sh rm -f out.wv
post.sh
#!/bin/sh rm -f out.wv
results-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.2.0m2--> <PhoronixTestSuite> <SystemMonitor> <Sensor>sys.time</Sensor> </SystemMonitor> </PhoronixTestSuite>
test-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.2.0m2--> <PhoronixTestSuite> <TestInformation> <Title>WavPack Audio Encoding</Title> <AppVersion>5.3</AppVersion> <Description>This test times how long it takes to encode a sample WAV file to WavPack format with very high quality settings.</Description> <ResultScale>Seconds</ResultScale> <Proportion>LIB</Proportion> <SubTitle>WAV To WavPack</SubTitle> <Executable>encode-wavpack</Executable> <TimesToRun>5</TimesToRun> </TestInformation> <TestProfile> <Version>1.4.1</Version> <SupportedPlatforms>Linux, MacOSX, Solaris, Windows</SupportedPlatforms> <SoftwareType>Utility</SoftwareType> <TestType>System</TestType> <License>Free</License> <Status>Verified</Status> <ExternalDependencies>build-utilities, cmake</ExternalDependencies> <Extends>pts/timed-audio-encode</Extends> <ProjectURL>http://www.wavpack.com/</ProjectURL> <Maintainer>apaige</Maintainer> </TestProfile> </PhoronixTestSuite>