telescope-media-files.nvim icon indicating copy to clipboard operation
telescope-media-files.nvim copied to clipboard

"ffmpegthumbnailer could not be found" while it's installed and available

Open jose1711 opened this issue 1 year ago • 1 comments

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.

jose1711 avatar Apr 14 '23 18:04 jose1711

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.

FrostyNick avatar Jul 31 '23 00:07 FrostyNick