-
Notifications
You must be signed in to change notification settings - Fork 174
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ver 13.00 Major update see Readme.md
Requires a new config.py
- Loading branch information
Showing
19 changed files
with
3,056 additions
and
1,049 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# ver 13.00 configcam.py Camera Settings. These are imported by strmcam.py | ||
|
||
CAMERA = "pilibcam" # valid values usbcam, rtspcam, pilibcam, pilegcam | ||
CAM_LOCATION = "Front Window" | ||
|
||
USBCAM_SRC = 0 # Device number of USB connection usually 0, 1, 2, Etc | ||
RTSPCAM_SRC = "rtsp://user:password@IP:554/path" # Set per IP Cam Docs and config see example below | ||
# rtsp://admin:[email protected]:554/12 | ||
|
||
# Camera Image Stream Settings | ||
IM_SIZE = (320, 240) # Image resolution width, height pixels | ||
IM_VFLIP = False # True enables flipping image vertically | ||
IM_HFLIP = False # True enables flipping image horizonally | ||
IM_ROTATION = 0 # Rotate camera image valid values are 0, 90, 180, 270 | ||
IM_FRAMERATE = 30 # Legacy Picamera Framerate |
Oops, something went wrong.