2e10d31ab6
Added the ability change the video codec via the config file. Changed the install script to now install the application in the /opt directory and then symm link to /usr/bin. Doing this allowed me to create a run script to start the application and enable the OPENCV_VIDEOIO_DEBUG parameter for opencv. This should make it easier to diagnose video-io issues with opencv. Updated the README documentation with all of the changes done to the application since v1.5.
6 lines
66 B
Bash
6 lines
66 B
Bash
#!/bin/sh
|
|
mkdir -p ./.build-mow
|
|
cd ./.build-mow
|
|
cmake ..
|
|
make -j4
|