We are at ISC2026!Conference at CCH – Congress Center Hamburg, Germany, Jun 23-25, 2026
CCH – Congress Center Hamburg, Germany
Jun. 23-25
Booth #C50
Book your Meeting
Back to App Hub

FFmpeg

n7.1.3
LGPL-2.1
video
encoding
multimedia

Test Results

All passed
Last run:
ArchitectureStatus
gfx1030Passed
gfx1100Passed
gfx1201Passed
gfx900Passed
gfx90aPassed
sm_120Passed

Description

FFmpeg is the leading multimedia framework, able to decode, encode, transcode, mux, demux, stream, filter, and play pretty much anything that humans and machines have created. It supports the most obscure ancient formats up to the cutting edge.

How to Build with SCALE

git clone https://github.com/FFmpeg/FFmpeg.git
cd FFmpeg
./configure \
    --enable-nonfree \
    --enable-cuda-nvcc \
    --enable-filter=scale_cuda \
    --nvccflags="-gencode arch=compute_$CUDAARCHS,code=sm_$CUDAARCHS -O2"
make -j$(nproc)

Notes

  • CUDA-accelerated features include: hardware decoding (NVDEC), hardware encoding (NVENC), and CUDA filters
  • The scale_cuda filter is validated
  • Requires nv-codec-headers to be installed for NVENC/NVDEC support
  • License: LGPL 2.1 — binary redistribution is restricted

Known Bugs