The import of some MP4 in Mathematica failed because the Wolfram-shipped libssl.so.3 and libcrypto.so.3 conflicted with the system FFmpeg dependency chain, especially librabbitmq.so.4, causing errors such as undefined symbol: ENGINE\_load\_private\_key, version OPENSSL\_3.0.0. Renaming the Wolfram OpenSSL libraries allowed FFmpeg import to work, but then Wolfram server login stopped working. The effective workaround was to build a minimal custom FFmpeg 8.1.1 with shared libraries enabled, networking disabled, no AMQP/RabbitMQ support, and only the required MP4/H.264/AAC components. Mathematica was then started with the custom FFmpeg library directory prepended to LD\_LIBRARY\_PATH, for example LD\_LIBRARY\_PATH="\\\$HOME/ffmpeg\_build/lib\\\${LD\_LIBRARY\_PATH:+:\\\$LD\_LIBRARY\_PATH}" WolframNB. With this setup, both video import and Wolfram server login worked correctly. The essential point is that FFmpegToolsSystem-8.1.1.so could resolve against compatible custom libav\* shared libraries while avoiding the problematic RabbitMQ/OpenSSL conflict.