I hereby claim:
- I am bilson on github.
- I am bilson (https://keybase.io/bilson) on keybase.
- I have a public key ASD-chH0_e31RUohUMCt_J3N57eyQdpv4wpUX8sb-gbcSAo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| #!/bin/bash | |
| #set -e | |
| # install-wifi - 12/02/2018 - by MrEngman. | |
| UPDATE_SELF=${UPDATE_SELF:-1} | |
| UPDATE_URI="http://downloads.fars-robotics.net/wifi-drivers/install-wifi" | |
| ROOT_PATH=${ROOT_PATH:-"/"} | |
| WORK_PATH=${WORK_PATH:-"${ROOT_PATH}/root"} |
| #install depencies | |
| apt install python-dev gcc make gcc binutils build-essential | |
| #get pjsip | |
| wget http://www.pjsip.org/release/2.6/pjproject-2.6.tar.bz2 | |
| tar -xjf pjproject-2.6.tar.bz2 | |
| cd pjproject-2.6 | |
| #configure | |
| export CFLAGS="$CFLAGS -fPIC" | |
| #build pjsip |
| #!/bin/bash | |
| # This script allows you to chroot ("work on") | |
| # the raspbian sd card as if it's the raspberry pi | |
| # on your Ubuntu desktop/laptop | |
| # just much faster and more convenient | |
| # credits: https://gist.github.com/jkullick/9b02c2061fbdf4a6c4e8a78f1312a689 | |
| # make sure you have issued |
| #!/bin/bash | |
| cd ~ | |
| sudo apt-get update | |
| sudo apt-get install -y git cmake libusb-1.0-0.dev build-essential | |
| cat <<EOF >no-rtl.conf | |
| blacklist dvb_core | |
| blacklist dvb_usb_rtl28xxu |
The repository for the assignment is public and Github does not allow the creation of private forks for public repositories.
The correct way of creating a private frok by duplicating the repo is documented here.
For this assignment the commands are:
git clone --bare git@github.com:usi-systems/easytrace.git
You can use ffmpeg to directly pull frames off of a dahua 4300s at full resolution. May be a good alternative to pricey dvrs which likely cannot record at full resolution, may not work with the camera, or are prohibitevly expensive
Simple stream to file. Full resolution
ffmpeg -loglevel debug -rtsp_transport tcp -i "rtsp://admin:admin@198.175.207.61:554/live" \
-c copy -map 0 foo.mp4
| #!/bin/bash | |
| cd ~ | |
| sudo apt-get update | |
| sudo apt-get install curl git cmake libusb-1.0-0.dev build-essential | |
| cat <<EOF >no-rtl.conf | |
| blacklist dvb_core | |
| blacklist dvb_usb_rtl28xxu |
| #!/bin/bash | |
| CURDIR=$(pwd) | |
| CYAN='\033[0;36m' | |
| GREEN='\033[0;32m' | |
| NC='\033[0m' | |
| ORANGE='\033[0;33m' | |
| PURPLE='\033[0;35m' | |
| RED='\033[0;31m' | |
| YELLOW='\033[1;33m' |