Hi, I captured the network packets from my ipad to the E88 drone using a Hackintosh. I tried the following piece of code with port 7099:
video_address = ("192.168.1.1", 7099)
video = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
# Use your IP here
video.bind(("192.168.1.100", 19797))
# The message 'Bv' will start the video stream from the drone
video_start_message = str.encode('Bv')
video.sendto(video_start_message, video_address)
data, server = video.recvfrom(2048)
but the data received was always b'\x1f\x00\x00\x00\x00'
I have the packet capture here