mirror of
https://github.com/CopterExpress/clover.git
synced 2026-05-27 13:39:33 +00:00
8 lines
238 B
Bash
Executable File
8 lines
238 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Usage
|
|
# fpv_camera <video_device> <http port>
|
|
|
|
echo "Starting FPV camera $1 on :$2"
|
|
mjpg_streamer -i "/usr/lib/input_uvc.so -d $1 -r 320x240 -f 30" -o "/usr/lib/output_http.so -w /usr/share/mjpg_streamer/www -p $2"
|