Skip to content

Commit

Permalink
Replace localhost with explicit address (#5070)
Browse files Browse the repository at this point in the history
* Replace localhost

* Replace localhost
  • Loading branch information
NickM-27 authored Jan 13, 2023
1 parent e0a0d12 commit 7fbfdb3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/docs/configuration/camera_specific.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Note that mjpeg cameras require encoding the video into h264 for recording, and
mjpeg_cam:
ffmpeg:
inputs:
- path: rtsp://localhost:8554/mjpeg_cam
- path: rtsp://127.0.0.1:8554/mjpeg_cam
roles:
- detect
- record
Expand Down
4 changes: 2 additions & 2 deletions docs/docs/configuration/restream.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ cameras:
test_cam:
ffmpeg:
inputs:
- path: rtsp://localhost:8554/test_cam # <--- the name here must match the name of the camera
- path: rtsp://127.0.0.1:8554/test_cam # <--- the name here must match the name of the camera
roles:
- record
- detect
Expand All @@ -66,7 +66,7 @@ cameras:
test_cam:
ffmpeg:
inputs:
- path: rtsp://localhost:8554/test_cam # <--- the name here must match the name of the camera
- path: rtsp://127.0.0.1:8554/test_cam # <--- the name here must match the name of the camera
roles:
- record
- path: rtsp://192.168.1.5:554/stream # <--- camera high res stream
Expand Down

0 comments on commit 7fbfdb3

Please sign in to comment.