how to capture simple webcam video on ubuntu code example
Example 1: ubuntu camera
Webcam Tools
Webcamoid Full featured and multi-platform webcam suite with a simple interface
ZoneMinder All-in-one security camera solution
Motion V4L capture program supporting motion detection
Kerberos.io Video surveillance solution
Clight Webcam becomes light sensor
Cheese Take pictures and videos from your webcam
Ekiga VoIP and video conferencing application
Kamoso Qt-based webcam utility
HasciiCam ASCII cam streaming
Example 2: use android camera as webcam ubuntu in python
import urllib.requestimport cv2import numpy as npimport timeURL = "http://192.168.43.1:8080"while True: img_arr = np.array(bytearray(urllib.request.urlopen(URL).read()),dtype=np.uint8) img = cv2.imdecode(img_arr,-1) cv2.imshow('IPWebcam',img) if cv2.waitKey(1): break