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.2.0
pts/encode-ogg-1.2.0
- 06 December 2010 -
Initial import into OpenBenchmarking.org
downloads.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v3.0.0a3 (Iveland) [ http://www.phoronix-test-suite.com/ ]--> <PhoronixTestSuite> <Downloads> <Package> <URL>http://downloads.xiph.org/releases/ogg/libogg-1.1.3.tar.gz, ftp://ftp.uni-hannover.de/pub/mirror/bsd/NetBSD/packages/distfiles/libogg-1.1.3.tar.gz</URL> <MD5>eaf7dc6ebbff30975de7527a80831585</MD5> <FileSize>403467</FileSize> </Package> <Package> <URL>http://downloads.xiph.org/releases/vorbis/libvorbis-1.2.0.tar.gz, ftp://ftp.uni-hannover.de/pub/mirror/bsd/NetBSD/packages/distfiles/libvorbis-1.2.0.tar.gz</URL> <MD5>478646358c49f34aedcce58948793619</MD5> <FileSize>1494373</FileSize> </Package> <Package> <URL>http://downloads.xiph.org/releases/vorbis/vorbis-tools-1.2.0.tar.gz, ftp://ftp.uni-hannover.de/pub/mirror/bsd/NetBSD/packages/distfiles/vorbis-tools-1.2.0.tar.gz</URL> <MD5>df976d24e51ef3d87cd462edf747bf9a</MD5> <FileSize>1076814</FileSize> </Package> </Downloads> </PhoronixTestSuite>
install.sh
#!/bin/sh mkdir $HOME/vorbis tar -zxvf libogg-1.1.3.tar.gz tar -zxvf libvorbis-1.2.0.tar.gz tar -zxvf vorbis-tools-1.2.0.tar.gz cd libogg-1.1.3/ ./configure --prefix=$HOME/vorbis make -j $NUM_CPU_JOBS make install cd .. rm -rf libogg-1.1.3/ cd libvorbis-1.2.0/ ./configure --prefix=$HOME/vorbis make -j $NUM_CPU_JOBS make install cd .. rm -rf libvorbis-1.2.0/ cd vorbis-tools-1.2.0/ ./configure --prefix=$HOME/vorbis make -j $NUM_CPU_JOBS echo $? > ~/install-exit-status make install cd .. rm -rf vorbis-tools-1.2.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 v3.0.0a3 (Iveland) [ http://www.phoronix-test-suite.com/ ]--> <PhoronixTestSuite> <SystemMonitor> <Sensor>sys.time</Sensor> </SystemMonitor> </PhoronixTestSuite>
test-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v3.0.0a3 (Iveland) [ http://www.phoronix-test-suite.com/ ]--> <PhoronixTestSuite> <TestInformation> <Title>Ogg Encoding</Title> <AppVersion>1.2.0</AppVersion> <Description>This test times how long it takes to encode a sample WAV file to Ogg format.</Description> <SubTitle>WAV To Ogg</SubTitle> <Executable>oggenc</Executable> </TestInformation> <TestProfile> <Version>1.2.0</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>