telescope-media-files.nvim
telescope-media-files.nvim copied to clipboard
"ffmpegthumbnailer could not be found" while it's installed and available
Getting ffmpegthumbnailer could not be found in your path,\nplease install it to display video previews
even when ffmpegthumbnailer
is available.
# which ffmpegthumbnailer
/usr/bin/ffmpegthumbnailer
In the code there is a check for viu
:
if ! command -v viu &> /dev/null; then
echo "ffmpegthumbnailer could not be found in your path,\nplease install it to display video previews"
which is a separate project. Once installed it's working without issues.
It doesn't look like it needs to be installed even. In my case I did:
sudo touch /usr/bin/viu
This assuming /usr/bin/ is in path (likely).
And it worked. After installing viu
and also removing viu from touch nothing changed.