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.7.2
pts/ffmpeg-2.7.2
- 07 April 2018 -
Use gmake on BSD to fix build, update download links too.
downloads.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v8.0.0m2--> <PhoronixTestSuite> <Downloads> <Package> <URL>http://ffmpeg.org/releases/ffmpeg-3.4.1.tar.bz2</URL> <MD5>bbf3fcded80c33968c91bf323a744286</MD5> <SHA256>f3443e20154a590ab8a9eef7bc951e8731425efc75b44ff4bee31d8a7a574a2c</SHA256> <FileSize>10177055</FileSize> <PlatformSpecific>Linux, BSD, Solaris, MacOSX</PlatformSpecific> </Package> <Package> <URL>http://ffmpeg.zeranoe.com/builds/win64/static/ffmpeg-3.4.1-win64-static.zip</URL> <MD5>5cb05b7ad82c3c2786131c87cfa65fc3</MD5> <SHA256>c7d9f3e5db788a73c5601cf5581f7d0e26018ba697ff6e3e48990093cac740be</SHA256> <FileSize>45955089</FileSize> <PlatformSpecific>Windows</PlatformSpecific> </Package> <Package> <URL>http://samples.ffmpeg.org/V-codecs/h264/HD2-h264.ts</URL> <MD5>69dc5d10fdf92bdb7ea6097857508134</MD5> <FileSize>303528820</FileSize> </Package> </Downloads> </PhoronixTestSuite>
install.sh
#!/bin/sh tar -xjf ffmpeg-3.4.1.tar.bz2 mkdir ffmpeg_/ cd ffmpeg-3.4.1/ ./configure --disable-zlib --disable-doc --prefix=$HOME/ffmpeg_/ make -j $NUM_CPU_JOBS echo $? > ~/install-exit-status make install cd ~/ rm -rf ffmpeg-3.4.1/ 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-3.4.1.tar.bz2 mkdir ffmpeg_/ cd ffmpeg-3.4.1/ ./configure --disable-zlib --disable-doc --prefix=$HOME/ffmpeg_/ gmake -j $NUM_CPU_JOBS echo $? > ~/install-exit-status gmake install cd ~/ rm -rf ffmpeg-3.4.1/ 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-3.4.1-win64-static.zip echo "#!/bin/sh ./ffmpeg-3.4.1-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.0.0m2--> <PhoronixTestSuite> <SystemMonitor> <Sensor>sys.time</Sensor> </SystemMonitor> </PhoronixTestSuite>
test-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v8.0.0m2--> <PhoronixTestSuite> <TestInformation> <Title>FFmpeg</Title> <AppVersion>3.4.1</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.7.2</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>