0

I need VTK installation with FFMPEG support. Should I just build one, or is one available in a package? 24.04LTS TIA

1 Answers1

0

I guess you're talking about the Visualization Toolkit (VTK) is an open-source software system for 3D computer graphics, image processing, and visualization.

As shown by package.ubuntu.com, if you want to install it through APT, you must enable the universe repository. Then run:

sudo apt update
sudo apt install vtk9

For ffmpeg support, you could try to install ffmpeg (which also requires the universe repository):

sudo apt install ffmpeg

If it does not work, see the related VTK documentation: you might have to recompile this version of ffmpeg as explained in this discussion.