Tests
Suites
Latest Results
Search
Register
Login
Popular Tests
Timed Linux Kernel Compilation
SVT-AV1
7-Zip Compression
Stockfish
x265
FFmpeg
Newest Tests
LiteRT
WarpX
Epoch
Valkey
Whisperfile
XNNPACK
Recently Updated Tests
ASTC Encoder
SVT-AV1
Unvanquished
Primesieve
XNNPACK
oneDNN
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
Timed FFmpeg Compilation 1.1.0
pts/build-ffmpeg-1.1.0
- 29 May 2021 -
Update against upstream FFmpeg 4.4.
downloads.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.4.0--> <PhoronixTestSuite> <Downloads> <Package> <URL>https://ffmpeg.org/releases/ffmpeg-4.4.tar.bz2</URL> <MD5>aa46d2168f30becd4fd3b22d2e8a91ec</MD5> <SHA256>42093549751b582cf0f338a21a3664f52e0a9fbe0d238d3c992005e493607d0e</SHA256> <FileName>ffmpeg-4.4.tar.bz2</FileName> <FileSize>11489948</FileSize> </Package> </Downloads> </PhoronixTestSuite>
install.sh
#!/bin/sh tar -xf ffmpeg-4.4.tar.bz2 echo "#!/bin/sh cd ffmpeg-4.4 if [ \$OS_TYPE = \"BSD\" ] then gmake -s -j \$NUM_CPU_CORES 2>&1 else make -s -j \$NUM_CPU_CORES 2>&1 fi echo \$? > ~/test-exit-status" > build-ffmpeg chmod +x build-ffmpeg
interim.sh
#!/bin/sh cd ffmpeg-4.4 if [ $OS_TYPE = "BSD" ] then gmake clean else make clean fi
post.sh
#!/bin/sh rm -rf ffmpeg-4.4
pre.sh
#!/bin/sh rm -rf ffmpeg-4.4 tar -xf ffmpeg-4.4.tar.bz2 cd ffmpeg-4.4 ./configure --disable-zlib --disable-doc > /dev/null if [ $OS_TYPE = "BSD" ] then gmake clean else make clean fi
results-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.4.0--> <PhoronixTestSuite> <SystemMonitor> <Sensor>sys.time</Sensor> </SystemMonitor> </PhoronixTestSuite>
test-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.4.0--> <PhoronixTestSuite> <TestInformation> <Title>Timed FFmpeg Compilation</Title> <AppVersion>4.4</AppVersion> <Description>This test times how long it takes to build the FFmpeg multimedia library.</Description> <ResultScale>Seconds</ResultScale> <Proportion>LIB</Proportion> <SubTitle>Time To Compile</SubTitle> <TimesToRun>3</TimesToRun> </TestInformation> <TestProfile> <Version>1.1.0</Version> <SupportedPlatforms>Linux, MacOSX, Solaris, BSD</SupportedPlatforms> <SoftwareType>Utility</SoftwareType> <TestType>Processor</TestType> <License>Free</License> <Status>Verified</Status> <ExternalDependencies>build-utilities</ExternalDependencies> <EnvironmentSize>978</EnvironmentSize> <ProjectURL>https://www.ffmpeg.org/</ProjectURL> <RepositoryURL>https://git.ffmpeg.org/ffmpeg.git</RepositoryURL> <InternalTags>SMP</InternalTags> <Maintainer>Michael Larabel</Maintainer> </TestProfile> </PhoronixTestSuite>