Skip to content

Fix PyInstaller LD_LIBRARY_PATH contamination breaking FFmpeg on Linux#766

Open
anne-o-pixel wants to merge 8 commits into
cdgriffith:masterfrom
anne-o-pixel:patch-2
Open

Fix PyInstaller LD_LIBRARY_PATH contamination breaking FFmpeg on Linux#766
anne-o-pixel wants to merge 8 commits into
cdgriffith:masterfrom
anne-o-pixel:patch-2

Conversation

@anne-o-pixel

Copy link
Copy Markdown
Contributor

When running from a PyInstaller-built binary (e.g. the fastflix-bin AUR package), FFmpeg fails to launch with:
/usr/bin/ffmpeg: symbol lookup error: /usr/lib/libass.so.9: undefined symbol: FcConfigSetDefaultSubstitute

PyInstaller sets LD_LIBRARY_PATH to its bundled library directory at startup.

When FastFlix spawns /usr/bin/ffmpeg as a subprocess, FFmpeg inherits this contaminated path and loads the bundled libass.so (built for Ubuntu 24.04) instead of the system one, causing a symbol mismatch with the system fontconfig.

This affects any Linux distribution where the system library versions differ from those bundled in the PyInstaller binary.


Added a clean_env() helper in fastflix/shared.py that strips LD_LIBRARY_PATH from the environment when running in a frozen PyInstaller app.

This is applied to all subprocess calls (run, Popen) that invoke FFmpeg, FFprobe, or related tools

Add clean_env function to remove LD_LIBRARY_PATH from environment.
Added clean_env() to subprocess calls for feature checks.
Updated the run method to include a clean environment for subprocesses.
Pass cleaned environment to subprocess run for thumbnail generation.
Updated thumbnail generation to use a cleaned environment.
Updated thumbnail generation to use a cleaned environment.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant