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
FFmpeg 2.8.0
pts/ffmpeg-2.8.0
- 28 July 2018 -
Update against upstream FFmpeg 4.0.2
downloads.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v8.2.0m1--> <PhoronixTestSuite> <Downloads> <Package> <URL>http://ffmpeg.org/releases/ffmpeg-4.0.2.tar.bz2</URL> <MD5>5576e8a22f80b6a336db39808f427cfb</MD5> <SHA256>346c51735f42c37e0712e0b3d2f6476c86ac15863e4445d9e823fe396420d056</SHA256> <FileName>ffmpeg-4.0.2.tar.bz2</FileName> <FileSize>10424065</FileSize> <PlatformSpecific>Linux, BSD, Solaris, MacOSX</PlatformSpecific> </Package> <Package> <URL>https://ffmpeg.zeranoe.com/builds/win64/static/ffmpeg-4.0.2-win64-static.zip</URL> <MD5>88398fd30c3e252a434ad8cd27ea27c6</MD5> <SHA256>2bf3726d7b489f1fe5609e1f9d93d827fd9e9c9d21b829b254a5bae0c3f60ec8</SHA256> <FileName>ffmpeg-4.0.2-win64-static.zip</FileName> <FileSize>65766779</FileSize> <PlatformSpecific>Windows</PlatformSpecific> </Package> <Package> <URL>http://samples.ffmpeg.org/V-codecs/h264/HD2-h264.ts</URL> <MD5>69dc5d10fdf92bdb7ea6097857508134</MD5> <FileName>HD2-h264.ts</FileName> <FileSize>303528820</FileSize> </Package> </Downloads> </PhoronixTestSuite>
install.sh
#!/bin/sh tar -xjf ffmpeg-4.0.2.tar.bz2 mkdir ffmpeg_/ cd ffmpeg-4.0.2/ ./configure --disable-zlib --disable-doc --prefix=$HOME/ffmpeg_/ make -j $NUM_CPU_CORES echo $? > ~/install-exit-status make install cd ~/ rm -rf ffmpeg-4.0.2/ rm -rf ffmpeg_/lib/ echo "#!/bin/sh ./ffmpeg_/bin/ffmpeg -i HD2-h264.ts -f rawvideo -threads \$NUM_CPU_CORES -y -target ntsc-dv /dev/null 2>&1 echo \$? > ~/test-exit-status" > ffmpeg chmod +x ffmpeg
install_bsd.sh
#!/bin/sh # BSD version is using gmake rather than make to avoid build problems on at least FreeBSD 12 current over "need an operator" warnings tar -xjf ffmpeg-4.0.2.tar.bz2 mkdir ffmpeg_/ cd ffmpeg-4.0.2/ ./configure --disable-zlib --disable-doc --prefix=$HOME/ffmpeg_/ gmake -j $NUM_CPU_CORES echo $? > ~/install-exit-status gmake install cd ~/ rm -rf ffmpeg-4.0.2/ rm -rf ffmpeg_/lib/ echo "#!/bin/sh ./ffmpeg_/bin/ffmpeg -i HD2-h264.ts -f rawvideo -threads \$NUM_CPU_CORES -y -target ntsc-dv /dev/null 2>&1 echo \$? > ~/test-exit-status" > ffmpeg chmod +x ffmpeg
install_windows.sh
#!/bin/sh unzip -o ffmpeg-4.0.2-win64-static.zip echo "#!/bin/sh ./ffmpeg-4.0.2-win64-static/bin/ffmpeg.exe -i HD2-h264.ts -f rawvideo -threads \$NUM_CPU_CORES -y -target ntsc-dv output 2>&1 echo \$? > ~/test-exit-status" > ffmpeg chmod +x ffmpeg
results-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v8.2.0m1--> <PhoronixTestSuite> <SystemMonitor> <Sensor>sys.time</Sensor> </SystemMonitor> </PhoronixTestSuite>
test-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v8.2.0m1--> <PhoronixTestSuite> <TestInformation> <Title>FFmpeg</Title> <AppVersion>4.0.2</AppVersion> <Description>This test uses FFmpeg for testing the system's audio/video encoding performance.</Description> <ResultScale>Seconds</ResultScale> <Proportion>LIB</Proportion> <SubTitle>H.264 HD To NTSC DV</SubTitle> <TimesToRun>3</TimesToRun> </TestInformation> <TestProfile> <Version>2.8.0</Version> <SupportedPlatforms>Linux, BSD, Solaris, MacOSX, Windows</SupportedPlatforms> <SoftwareType>Utility</SoftwareType> <TestType>Processor</TestType> <License>Free</License> <Status>Verified</Status> <ExternalDependencies>build-utilities, yasm</ExternalDependencies> <EnvironmentSize>372</EnvironmentSize> <ProjectURL>http://ffmpeg.org/</ProjectURL> <Maintainer>Michael Larabel</Maintainer> </TestProfile> </PhoronixTestSuite>