I bought Camera: Eachine E58 RC Quadcopter 0.3MP WIFI FPV and connected it to my smartphone, which works fine with an application called WIFI FPV.
I want is to connect my wifi camera to my ubuntu and stream the the video with openCV. I searched for a driver, like wifi fpv camera in linux, but didn't find one. There's just on android or windows(microsoft store).
Can anyone help me access my ip wifi camera in ubuntu/linux?
I used in my ubuntu openCV as a python code, it didn't work for me ! camera ip is : 192.168.0.1 port:80 protocol I guess it's DHCP I need a driver or something that I could stream my video from wifi camera to Ubuntu by wifi network of my camera, I used VLC player and it didn't work at all ! , I tried to search like wifi fpv app (as it works fine in my smartphone) but didn't find in ubuntu something like that .. so maybe anyone knows good driver for eachine camera in ubuntu? thanks alot !!
my goal at the end is to openCV video stream in my ubuntu(linux) and not to my smartphone(in smartphone it works fine with wifi fpv app but I need to stream it to my Linux)
I used opencv
python code for getting stream of the video from the wifi camera, but it didn't work. Although I already connected my laptop(linux) within the wifi camera.
Here's my code:
import cv2
cap = cv2.VideoCapture('http://192.168.0.1:80/video')
while(True):
ret, frame = cap.read()
cv2.imshow('frame',frame)
if cv2.waitKey(1) & 0xFF == ord('q'):
cv2.destroyAllWindows()
break