edefranco

Results 5 comments of edefranco

A simple way can be call a bash script that get the v4l2rtspserver pid (ps -e | grep v4l2rtspserver | awk '{print $1}' and kill it ...

searching on google I understand that the problem was related to compiler directive. Changing in the file CMakeList.txt into the dir v4l2rtspserver the row: set(CMAKE_CXX_STANDARD 11) into set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")...

installing pkg-config resolve the relative error, but now the problem is: CMake Error at CMakeLists.txt:25 (add_executable): Target "v4l2rtspserver" links to target "Threads::Threads" but the target was not found. Perhaps a...

After other google searching I modified the the CMakeList.txt from: find_package (Threads) target_link_libraries (${PROJECT_NAME} Threads::Threads) to find_package (Threads) target_link_libraries (${PROJECT_NAME}) if (TARGET Threads::Threads) target_link_libraries (${PROJECT_NAME} Threads::Threads) endif() I am not...

Hi, thank for your quickly answer. I am using matrix.sh with matrix token and room id ... Maybe I was in a hurry to ask for help ... it would...