-
-
Notifications
You must be signed in to change notification settings - Fork 52
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
[BUG] Debug option on Camera service doesn't seem to work #194
Comments
You can run node-red in debug mode. It might help to see what is an error. |
I'm not sure where this magical "debug" mode is for node-red. Reading the docs, all I can find is the option to set which log-level to use. As noted above, I tried |
How can I generate Debug logs? Stop your node-red instance and start it again using the following command: This should output detailed information regarding everything in the homekit context. Also read #16 |
@Shaquu I also have a problem and I know why. |
Did a quick and dirty solution, but this should be corrected and video-filter (and maybe all additional parameters) should be optional not required (now shows required in the Node-RED GUI) and also if no parameter specified, don't add defaults to the stream... |
Would like to make a PR? |
The solution involves that it now overwrites the vf local variable with an empty array (so now you can't supply video filters). However I think I can make them optional. |
Closing this as I was able to fix it...thanks! |
I know it's closed but @radokristof still please make a PR :) |
I'm on it :) However I have a little time right now (I will have more next week) and I didn't figured out a neat way to do this... I'm not a JavaScript expert :) |
I will open this Issue to not forget about it. |
@Shaquu unrelated, but didn't want to open an issue quite yet. I've noticed a weird issue while adding a second camera: both cameras are showing the same image as a still image. One of my cameras creates its own, so I have a URL provide for the |
@feens One bridge can have only one camera. |
@Shaquu oh interesting. Is that a limitation on HomeKit itself? It's interesting because the feeds both work. |
Yes. Homekit protocol mandates one camera per bridge. |
@radokristof would you test latest dev if it solve the problem? |
## [1.0.0] - 2020.02.23 Lost backward compatibility. In order to make it work read this [notice](#163 (comment)). ### Fixed - Node id macify algorithm changed [#170](#170) - Corrections regarding issue [#12](#12) so that changes can be deployed without restarting node-red - Automatically creating a new service and replacing the old one if the service type changed - Automatically replacing an accessory with a new one if the accessory information changes (e.g. Name, Manufacturer, ...) - Video Filter value in Camera Control is now optional [#194](#194) (can be empty, before it was generated if was empty) - Removed updateReachability as it is deprecated (and doesn't make a difference) ### Added - After Service selection in node configuration Category will be automatically set to default for Service - Interface Name for Camera Service configuration - Support for new TV Remote services - Now first output is for onChange, second for onSet and third for camera snapshot. [#200](#200) - Sponsor Button on repository page ### Changed - Accessory Category in node configuration moved under Service selection - Clarify NO_RESPONSE in README - Update node-red version in dependencies - Camera Service source code to match newest improvements in homebridge-camera-ffmpeg - Update to latest HAP-NodeJS - Removed unnecessary accessory category from service node - Removed fields Manufacturer, Serial Number and Model from linked service nodes - Moved eslint and prettier configuration to package.json - Added automatic linting on pre-commit Thanks to all contributors! @radokristof @NorthernMan54 @gotofoo And thanks to those who also helped in testing! @crxporter @sjorge
Video Filter should now be fully optional in 1.0.3 (just released). To debug camera problem in NRCHKB with node-red you have to:
|
Describe the bug
I'm having issues getting camera service to work with an RTSP stream. I've tried to debug this but all I get is
ERROR: FFmpeg exited with code 1
, and no further details, which isn't that helpful.I'm running 0.8.0, and I've also tried changing my log level to debug in
settings.js
.What's also interesting: the service seemed to be generating snapshots fine.
The text was updated successfully, but these errors were encountered: