| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
|
It seems that the PyPi version of 'ffmpeg' is a thin wrapper for python that assumes the binaries are already installed, which is why conda is in use there. I've seen a few packages use a different method, which is to pause when ffmpeg is not installed and ask whether to run a script to install the binaries; not sure if we should consider doing the same. |
Sorry, something went wrong.
|
Regarding the installation and the python wrapper : see here |
Sorry, something went wrong.
There was a problem hiding this comment.
Good fix for now!
Sorry, something went wrong.
This resolves a dll shadowing problem, since shared dlls are used between ffmpeg and pyside6
|
Cleaned it up |
Sorry, something went wrong.
|
Indeed, sorry for the extra work @deruyter92 |
Sorry, something went wrong.
| Back | FazBrowse Home | New Git URL |
solves #3252
Summary
The installation using our conda yaml can cause a dll shadowing problem on some machines if ffmpeg is installed via conda and pyside6 via pip (the conda-installed ffmpeg dll's are resolved first, but can have a mismatching version for pyside6). This issue of mixing conda and pip installations (for ffmpeg and pyside6) can be addressed by either installing both via pip or both via conda. This PR includes pyside6 as a conda dependency for users of the conda yaml file.
Notes: