-
-
Notifications
You must be signed in to change notification settings - Fork 8.3k
Add advanced section for generic camera config flow #42615
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 |
|---|---|---|
|
|
@@ -34,18 +34,21 @@ Username: | |
| description: The username for accessing your camera. Note that this applies to both still_image_url and stream_source. | ||
| Password: | ||
| description: The password for accessing your camera. Note that this applies to both still_image_url and stream_source. | ||
| Authentication: | ||
| description: "Type for authenticating the requests `basic` or `digest`." | ||
| Limit refetch to URL change: | ||
| description: Limits re-fetching of the remote image to when the URL changes. Only relevant if using a template to fetch the remote image. | ||
| Frame Rate: | ||
| description: The number of frames-per-second (FPS) of the stream. Can cause heavy traffic on the network and/or heavy load on the camera. | ||
| Verify SSL certificate: | ||
| description: Enable or disable SSL certificate verification. Set to false to use an http-only camera, or you have a self-signed SSL certificate and haven't installed the CA certificate to enable verification. | ||
| RTSP transport protocol: | ||
| description: "Set the RTSP transport protocol to `tcp`, `udp`, `udp_multicast` or `http`." | ||
| Use wallclock as timestamps: | ||
| description: ([Advanced Mode](/blog/2019/07/17/release-96/#advanced-mode) only) Rewrite the camera timestamps. This may help with playback or crashing issues from Wi-Fi cameras or cameras of certain brands (e.g., EZVIZ). | ||
| Advanced settings: | ||
| description: Advanced settings are only needed for special cases. Leave them unchanged unless you know what you are doing. | ||
| keys: | ||
| Frame Rate: | ||
| description: The number of frames-per-second (FPS) of the stream. Can cause heavy traffic on the network and/or heavy load on the camera. | ||
| Verify SSL certificate: | ||
| description: Enable or disable SSL certificate verification. Set to false to use an http-only camera, or you have a self-signed SSL certificate and haven't installed the CA certificate to enable verification. | ||
| RTSP transport protocol: | ||
| description: "Set the RTSP transport protocol to `tcp`, `udp`, `udp_multicast` or `http`." | ||
| Authentication: | ||
| description: "Type for authenticating the requests `basic` or `digest`." | ||
| Limit refetch to URL change: | ||
| description: Limits re-fetching of the remote image to when the URL changes. Only relevant if using a template to fetch the remote image. | ||
| Use wallclock as timestamps: | ||
| description: ([Advanced Mode](/blog/2019/07/17/release-96/#advanced-mode) only) Rewrite the camera timestamps. This may help with playback or crashing issues from Wi-Fi cameras or cameras of certain brands (e.g., EZVIZ). | ||
|
||
| {% endconfiguration_basic %} | ||
|
|
||
| <p class='img'> | ||
|
|
||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The word "false" should be formatted as code since it's a boolean value. Consider changing "Set to false" to "Set to
false" to properly format this technical value.