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
Timed FFmpeg Compilation 7.0.0
pts/build-ffmpeg-7.0.0
- 05 April 2024 -
Update against FFmpeg 7.0 upstream.
downloads.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.8.5--> <PhoronixTestSuite> <Downloads> <Package> <URL>http://ffmpeg.org/releases/ffmpeg-7.0.tar.xz</URL> <MD5>d2edfc6ec6494c432828876e3102f740</MD5> <SHA256>4426a94dd2c814945456600c8adfc402bee65ec14a70e8c531ec9a2cd651da7b</SHA256> <FileName>ffmpeg-7.0.tar.xz</FileName> <FileSize>10791240</FileSize> </Package> </Downloads> </PhoronixTestSuite>
install.sh
#!/bin/sh tar -xf ffmpeg-7.0.tar.xz echo "#!/bin/sh cd ffmpeg-7.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-7.0 if [ $OS_TYPE = "BSD" ] then gmake clean else make clean fi
post.sh
#!/bin/sh rm -rf ffmpeg-7.0
pre.sh
#!/bin/sh rm -rf ffmpeg-7.0 tar -xf ffmpeg-7.0.tar.xz cd ffmpeg-7.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.5--> <PhoronixTestSuite> <SystemMonitor> <Sensor>sys.time</Sensor> </SystemMonitor> </PhoronixTestSuite>
test-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.8.5--> <PhoronixTestSuite> <TestInformation> <Title>Timed FFmpeg Compilation</Title> <AppVersion>7.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>7.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> <SystemDependencies>pkg-config</SystemDependencies> </TestProfile> </PhoronixTestSuite>