I’m trying to livestream over USB from my Theta V to a Laptop running Ubuntu 20.04; eventually wanna run on Jetson Nano.
I ran the instructions here with no issue:
I did get this warning from cmake
:
ali@l-scoale-01:~/Dev/libuvc-theta/build$ cmake ..
-- libusb-1.0 found using pkgconfig
-- Found JPEG: /usr/lib/x86_64-linux-gnu/libjpeg.so (found version "80")
-- Found JPEG library using standard module
CMake Warning (dev) at /snap/cmake/1070/share/cmake-3.23/Modules/FindPackageHandleStandardArgs.cmake:438 (message):
The package name passed to `find_package_handle_standard_args` (JPEG) does
not match the name of the calling package (JpegPkg). This can lead to
problems in calling code that expects `find_package` result variables
(e.g., `_FOUND`) to follow a certain pattern.
Call Stack (most recent call first):
cmake/FindJpegPkg.cmake:58 (find_package_handle_standard_args)
CMakeLists.txt:45 (find_package)
This warning is for project developers. Use -Wno-dev to suppress it.
-- Found JPEG: /usr/lib/x86_64-linux-gnu/libjpeg.so
-- Building libuvc with JPEG support.
-- Configuring done
-- Generating done
-- Build files have been written to: /home/ali/Dev/libuvc-theta/build
When I try to run ./gst_viewer
I get:
./gst_viewer: error while loading shared libraries: libuvc.so.0: cannot open shared object file: No such file or directory
I do seem to have the shared lib installed:
ali@l-scoale-01:~/Dev/libuvc-theta-sample/gst$ sudo find / -name libuvc.so
/usr/local/lib/x86_64-linux-gnu/libuvc.so
/home/ali/Dev/libuvc-theta/build/libuvc.so
What am I doing wrong?
Thank you,