Finally I produced my App for driving the DJI Tello Drone, thanks to the precious indications of @inakigarm (see here).
Now I moved on to the next step, to receive streaming images.
The drone sends images captured by the camera with wifi in udp protocol in 720p format
I get data on the UDP socket, now how can I transform byte data into images?
I receive packages of 65k and I have to recompose the image, but how many Kb takes up the total image considering it is 720p?
Maybe there are too many questions
Now I moved on to the next step, to receive streaming images.
The drone sends images captured by the camera with wifi in udp protocol in 720p format
B4X:
Private Sub StreamVideo_PacketArrived (RicevedPacket As UDPPacket)
' 1280 * 720
Log( ":::" & RicevedPacket.Data.Length)
End Sub
I get data on the UDP socket, now how can I transform byte data into images?
I receive packages of 65k and I have to recompose the image, but how many Kb takes up the total image considering it is 720p?
Maybe there are too many questions