beagleboard / cloud9-examples

MIT License
52 stars 28 forks source link

ERROR: could not find input plugin #17

Closed tamberg closed 5 years ago

tamberg commented 5 years ago

Trying the Hackster.io tidl tutorial which is based on this repo.

When building the example with Run, after the step

the following error shows up:

MJPG Streamer Version.: 2.0
ERROR: could not find input plugin
       Perhaps you want to adjust the search path with:
       # export LD_LIBRARY_PATH=/path/to/plugin/folder
       dlopen: input_opencv.so: cannot open shared object file: No such file or directory
/var/lib/cloud9/common/Makefile:167: recipe for target 'start' failed
make: *** [start] Error 1

What would be the right setting for LD_LIBRARY_PATH?

(The file _inputopencv.so seems not to be on the BeagleBone AI.)

Kind regards, Thomas

tamberg commented 5 years ago

Ok, from the tidl example setup instructions it seems the mjpg-streamer-opencv-python package is required.

Consider adding it to the Hackster.io tidl tutorial :)

sudo apt update
sudo apt install -y ti-tidl mjpg-streamer-opencv-python

This fixes the issue.