NEWS
jarvis
-
Hallo,
na enige tijd iobroker vis gebruikt te hebben waar ik regelmatig problemen mee had, ben ik over gestapt naar jarvis.
Ik ben hier heel erg tevreden over hoe jarvis werkt. nu loop ik net als bij iobroker vis tegen het zelfde probleem aan.Ik heb 2 camera
s van instar en 1 van dahua. deze kan ik netjes met iframe invoeren. ik heb de refresh op 2sec staan. als ik op de laptop jarvis life kijk zie ik netjes de 3 camera
s met een beeld wat om de 2 sec verspringt. dit heb ik ook met iobroker vis.
als ik nu op de tablet of telefoon met android jarvis opstart dan heb ik geen beeld. verder werkt alles feilloos.wat kan hier de oorzaak van zijn.
een andere vraag. kan ik ook de streams zien zonder dat het beeld om de 2 sec springt?Is er iemand die mij hier verder in kan helpen.
chris -
@chris-nij Try it with
displayImage
?
https://mcuiobroker.gitbook.io/jarvis-infos/jarvis/besonderheiten-v3/module/displayimage#instar-in-9008-camera-live-stream-ronny-gerndt
If it possible for you, please in english. -
I have tried display image. And its works. But the refresh does not work.
it is a snapshot.chris.
-
@chris-nij You have to create a datapoint in ioBroker -> exp.:
0_userdata.0.jarvis.camera1.image
And then you fill this DP with the data from your camera. (script)
Ronny did this like he shown in the script:
So every second it will generate a new data for the DP.// create DP createStateAsync('0_userdata.0.jarvis.camera1.image', {read: true, write: true, name: "Camera1 Image", type: "string", role: "text", def: "" }); //Instar Kamera 9008 let cameraLiveStream = 'http://192.168.178.49:8085/tmpfs/auto.jpg?usr=xxx&pwd=xxx'; let cameraInterval = setInterval(function() { setState('0_userdata.0.jarvis.camera1.image', cameraLiveStream + '&_=' + Math.floor(Math.random() * 10000), true); }, 1000);
Add device for this new DP (
0_userdata.0.jarvis.camera1.image
)Then you change in jarvis the parameter in displayImage from directly by http to DP.
I hope this are enough information for you, otherwise ask again.
Have a nice day. -
@mcu Hello,
I've been working on it, I've found out how I make a data point in user data. But when I open it, I don't know what to do. there is already something in, but what next. when I put something in it, I can't save it.
I am not familiar with scripting.Greetings,
chris -
@chris-nij You don't have to it, it would automatically done by script.
I show how to initialize the script.
Do you have installed "javascript"? Do you see this in your speech? scripts?If not, you must install javascript.
Then you go to "adapter" on left side. Click on it and then searchjavascript
.
Click on "+" to install the javascript-adapter.Do you have it or not?
-
@mcu Hello,
I installed scripts, and added the script. adjusted the stream to my instar camera. but it doesn't work in jarvis unfortunately. what am i doing wrong.
Greetings
chris -
@chris-nij Show me the configuration of the displayImage-modul in layout.
Use this configuration
Not the user at first. -
I don't know exactly what you mean by configuration of the displayimage module. but I think one of the pictures is the right one.
chris
-
@chris-nij You could change the Refresh Method?
Do you get a Picture with cameraLiveStream-Link in a normal Browser Window?And its works
Which Link did you used at this time before?
-
with my link in the browser, works.
with the link you gave me. I get a logon, but when I enter users and password it says that this is not correct. but i know that this is good.
-
@chris-nij said in jarvis:
with my link in the browser, works.
with the link you gave me. I get a logon, but when I enter users and password it says that this is not correct. but i know that this is good.
-
@chris-nij I don't have a Camera. So I only can say what I read in the forum.
Perhaps @lines or @Ronny-Gerndt can help you in a better way?
So use your Link (And it works) and change the refresh Method to add numbers. -
-
Yes its works.
I used the administration account. apparently the instar camera doesn't like this. I have now created a user account in the camera and added it in jarvis. now everything works great.
chris