You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Problem
Currently, the ffmpeg path is hardcoded (as of 0.3.0-rc6) and can not be changed after compile. This will create a lot of issues once distro packages are created.
Solution
I suggest a change so that the ffmpeg/ffprobe available in the $PATH, unless overridden with the config file, unless overridden with an environment variable.
Current workaround
A simple $sudo ln -s $(dirname $(which ffmpeg)) /usr/bin/utils resolves the issue.
The text was updated successfully, but these errors were encountered:
Problem
Currently, the ffmpeg path is hardcoded (as of 0.3.0-rc6) and can not be changed after compile. This will create a lot of issues once distro packages are created.
Solution
I suggest a change so that the ffmpeg/ffprobe available in the $PATH, unless overridden with the config file, unless overridden with an environment variable.
Current workaround
A simple
$
sudo ln -s $(dirname $(which ffmpeg)) /usr/bin/utils
resolves the issue.The text was updated successfully, but these errors were encountered: