-
-
Notifications
You must be signed in to change notification settings - Fork 8.3k
Onvif: Clarified the need to have at least one H.264 video stream present #41570
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
Changes from all commits
e8f6201
8e12d5e
ec711a2
1dc15c4
db2c1db
ce77ce1
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -108,3 +108,17 @@ This integration uses the ONVIF auxiliary command and imaging service to send ce | |||||||||||||||||||||
| | IR lamp | `ir_lamp` | Turn infrared lamp on and off via `IrCutFilter` ONVIF imaging setting. | | ||||||||||||||||||||||
| | Autofocus | `autofocus` | Turn autofocus on and off via `AutoFocusMode` ONVIF imaging setting. | | ||||||||||||||||||||||
| | Wiper | `wiper` | Turn on the lens wiper on and off via the `Wiper` ONVIF auxiliary command. | | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
| ## Troubleshooting | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
| ### Symptom: Error message: "No usable cameras were found" | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
| The ONVIF integration shows an error message "No usable cameras were found". | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
| #### Resolution | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
| Update the camera configuration to output at least one video stream in H.264 format rather than H.265. One option for doing this is to set a secondary stream to H.264 while leaving the primary stream at the default H.265. | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
|
Comment on lines
+120
to
+121
|
||||||||||||||||||||||
| Update the camera configuration to output at least one video stream in H.264 format rather than H.265. One option for doing this is to set a secondary stream to H.264 while leaving the primary stream at the default H.265. | |
| To resolve this issue, you need to update your camera's configuration so that it outputs at least one video stream in H.264 format. Most cameras allow you to do this in their web interface or mobile app, typically under **Video**, **Stream**, or **Encoding** settings. | |
| 1. Open your camera's web interface or app. | |
| 2. Navigate to the **Video** or **Stream** settings section. | |
| 3. Look for options to set the video encoding format for each stream. | |
| 4. Change the encoding for at least one stream (often called the secondary or sub stream) to **H.264**. You can leave the primary stream set to **H.265** if you prefer. | |
| 5. Save your changes. | |
| If you are unsure how to access these settings or change the encoding format, refer to your camera's user manual or manufacturer's support website for specific instructions. |
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.
This line duplicates content from the heading. According to the documentation template, the symptom subsection should expand on or clarify the error, not simply repeat the heading. Either remove this redundant line or provide additional context, such as "When trying to set up the integration, you see the error message 'No usable cameras were found'."