I'm running on a Ubuntu 22.04 VM (host: Windows 10).I have a precompiled c++ code which requires a certain version of ffmpeg, which wasn't initially installed on the machine (wondering why).I found out that the version I needed was the FFMPEG 2.8 (as the ldd
command suggests).For example, the application requires libswscale-ffmpeg.so.3 or even libavutil-ffmpeg.so.54 (that's why the ffmpeg version I guessed was the 2.8).
Since I couldn't install that specific version from a single command line, I installed it from github (https://github.com/FFmpeg/FFmpeg/blob/master/INSTALL.md)
I also used the --build-suffix=-ffmpeg
as another topic suggested, and the installation worked as expected (I guess?)
However, I don't find any other ffmpeg subpackage like libswscale.ffmpeg.so.3 or others.
How can I fix this problem?