get external camera data with ethernet(LAN) and save it in buffers
-
I want to get data from external camera connected with ethernet and have a Ip address .can I receive it with TCP socket in my tcp server? if not can someone suggest me the easiest way for it
-
Use a QTcpSocket and connect to your external device
-
Use a QTcpSocket and connect to your external device
@Christian-Ehrlicher I do it but when I connect camera, server doesn't go in the new connection function
-
@Christian-Ehrlicher I do it but when I connect camera, server doesn't go in the new connection function
@RezaAhmadzadeh
What does this mean? How can people help from this description? You need to explain what you mean or show some minimal code. -
Hi,
In addition to my fellows, which model is that camera ?
Which protocol does it use ?
etc. -
Hi,
In addition to my fellows, which model is that camera ?
Which protocol does it use ?
etc.@SGaist the model of camera is Milesight. after I enter Ip address in browser it ask me user and password .then start showing, at this time I open Wireshark and see that it send bytes in tcp protocol but my tcp server in QT doesn't receive these bytes,my tcp server code is ok I am sure
-
Your description sounds like the camera is the TCP server, operating with HTTP at least to start. You should be writing TCP client code in your program. QNetworkAccessManager should be able to help with an HTTP GET request. How the transition to a video stream occurs is a different problem.
-
Check with the constructor documentation. It likely has a dedicated video stream, likely using the RTSP protocol.