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
ACES DGEMM
NWChem
SuperTuxKart
ASTC Encoder
SVT-AV1
Unvanquished
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
Ogg Encoding 1.4.1
pts/encode-ogg-1.4.1
- 13 August 2013 -
test 1
downloads.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v4.8.0 (Sokndal)--> <PhoronixTestSuite> <Downloads> <Package> <URL>http://downloads.xiph.org/releases/ogg/libogg-1.3.0.tar.gz</URL> <MD5>0a7eb40b86ac050db3a789ab65fe21c2</MD5> <FileSize>425144</FileSize> </Package> <Package> <URL>http://downloads.xiph.org/releases/vorbis/libvorbis-1.3.2.tar.gz</URL> <MD5>c870b9bd5858a0ecb5275c14486d9554</MD5> <FileSize>1483719</FileSize> </Package> <Package> <URL>http://downloads.xiph.org/releases/vorbis/vorbis-tools-1.4.0.tar.gz</URL> <MD5>567e0fb8d321b2cd7124f8208b8b90e6</MD5> <FileSize>1346532</FileSize> </Package> </Downloads> </PhoronixTestSuite>
install.sh
#!/bin/sh mkdir $HOME/vorbis # Force use of new libs. CPPFLAGS="-I$HOME/vorbis/include" LDFLAGS="-L$HOME/vorbis/lib" tar -zxvf libogg-1.3.0.tar.gz tar -zxvf libvorbis-1.3.2.tar.gz tar -zxvf vorbis-tools-1.4.0.tar.gz cd libogg-1.3.0/ ./configure --prefix=$HOME/vorbis make -j $NUM_CPU_JOBS make install cd .. rm -rf libogg-1.3.0/ cd libvorbis-1.3.2/ ./configure --prefix=$HOME/vorbis make -j $NUM_CPU_JOBS make install cd .. rm -rf libvorbis-1.3.2/ cd vorbis-tools-1.4.0/ ./configure --prefix=$HOME/vorbis make -j $NUM_CPU_JOBS echo $? > ~/install-exit-status make install cd .. rm -rf vorbis-tools-1.4.0/ echo "#!/bin/sh ./vorbis/bin/oggenc \$TEST_EXTENDS/pts-trondheim.wav -q 10 -o /dev/null > \$LOG_FILE 2>&1 echo \$? > ~/test-exit-status" > oggenc chmod +x oggenc
results-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v4.8.0 (Sokndal)--> <PhoronixTestSuite> <SystemMonitor> <Sensor>sys.time</Sensor> </SystemMonitor> </PhoronixTestSuite>
test-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v4.8.0 (Sokndal)--> <PhoronixTestSuite> <TestInformation> <Title>Ogg Encoding</Title> <AppVersion>1.3.0</AppVersion> <Description>This test times how long it takes to encode a sample WAV file to Ogg format using vorbis-tools, libvorbis, and libogg.</Description> <SubTitle>WAV To Ogg</SubTitle> <Executable>oggenc</Executable> </TestInformation> <TestProfile> <Version>1.4.1</Version> <SupportedPlatforms>Linux, Solaris, BSD</SupportedPlatforms> <SoftwareType>Utility</SoftwareType> <Extends>pts/timed-audio-encode</Extends> <EnvironmentSize>6</EnvironmentSize> <ProjectURL>http://www.vorbis.com/</ProjectURL> <Maintainer>Michael Larabel</Maintainer> </TestProfile> </PhoronixTestSuite>