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 6.0.0
pts/build-ffmpeg-6.0.0
- 28 February 2023 -
Update against FFmpeg 6.0 upstream.
downloads.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.8.4--> <PhoronixTestSuite> <Downloads> <Package> <URL>http://ffmpeg.org/releases/ffmpeg-6.0.tar.xz</URL> <MD5>47b6c5d930937413c3e308e2fdb3dfb5</MD5> <SHA256>57be87c22d9b49c112b6d24bc67d42508660e6b718b3db89c44e47e289137082</SHA256> <FileName>ffmpeg-6.0.tar.xz</FileName> <FileSize>10234012</FileSize> </Package> </Downloads> </PhoronixTestSuite>
install.sh
#!/bin/sh tar -xf ffmpeg-6.0.tar.xz echo "#!/bin/sh cd ffmpeg-6.0 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-6.0 if [ $OS_TYPE = "BSD" ] then gmake clean else make clean fi
post.sh
#!/bin/sh rm -rf ffmpeg-6.0
pre.sh
#!/bin/sh rm -rf ffmpeg-6.0 tar -xf ffmpeg-6.0.tar.xz cd ffmpeg-6.0 ./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.8.4--> <PhoronixTestSuite> <SystemMonitor> <Sensor>sys.time</Sensor> </SystemMonitor> </PhoronixTestSuite>
test-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.8.4--> <PhoronixTestSuite> <TestInformation> <Title>Timed FFmpeg Compilation</Title> <AppVersion>6.0</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>6.0.0</Version> <SupportedPlatforms>Linux, MacOSX, Solaris, BSD</SupportedPlatforms> <SoftwareType>Utility</SoftwareType> <TestType>Processor</TestType> <License>Free</License> <Status>Verified</Status> <ExternalDependencies>build-utilities, yasm, nasm</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>