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
As a result, if you have installed mediainfo in another directory that is in the PATH (eg: /usr/bin), such as installing it via apt install mediainfo, caption-inspector won't find it.
The Docker build appears to work around this by moving the binary:
There's a hard coded path to
/usr/local/bin/mediainfo
inautodetect_file.c
:caption-inspector/src/utils/autodetect_file.c
Line 52 in 476326f
As a result, if you have installed
mediainfo
in another directory that is in thePATH
(eg:/usr/bin
), such as installing it viaapt install mediainfo
,caption-inspector
won't find it.The Docker build appears to work around this by moving the binary:
caption-inspector/Dockerfile
Line 62 in 476326f
The easy fix is to change this to:
But it may also need a fix-up for the Docker container which puts the binary elsewhere.
The text was updated successfully, but these errors were encountered: