All Projects → NakulLakhotia → Live-Streaming-using-OpenCV-Flask

NakulLakhotia / Live-Streaming-using-OpenCV-Flask

Licence: other
A Flask Web-App to stream live from local webcam or CCTV (rtsp link)

Programming Languages

python
139335 projects - #7 most used programming language
HTML
75241 projects

Projects that are alternatives of or similar to Live-Streaming-using-OpenCV-Flask

webcam-to-cctv-using-rpi
In this project, we will use a webcam with Raspberry Pi to live stream wirelessly.
Stars: ✭ 17 (-88.19%)
Mutual labels:  cctv, webcam
jeelizPupillometry
Real-time pupillometry in the web browser using a 4K webcam video feed processed by this WebGL/Javascript library. 2 demo experiments are included.
Stars: ✭ 78 (-45.83%)
Mutual labels:  cctv, webcam
Security Camera
🔦 Motion detecting security camera using a raspberry pi, webcam, and slack
Stars: ✭ 76 (-47.22%)
Mutual labels:  cctv, webcam
MTG-Card-Reader
Reads a Magic: The Gathering card in front of a webcam and identifies it in an existing database of cards of a user-specified set.
Stars: ✭ 32 (-77.78%)
Mutual labels:  webcam
AntiEye
:.IP webcam penetration test suit.:
Stars: ✭ 21 (-85.42%)
Mutual labels:  webcam
Webcam Paint OpenCV
This Python application uses OpenCV library to track an object-of-interest (water bottle cap in my case) and uses the detected object to draw colored lines (Blue, Green, Red and Yellow).
Stars: ✭ 66 (-54.17%)
Mutual labels:  webcam
qubes-video-companion
Securely stream webcams and share screens across virtual machines *THIS PROJECT IS CURRENTLY STILL IN DEVELOPMENT (Mostly finishing switch to MJPEG for big performance boost; see FAQ)*
Stars: ✭ 38 (-73.61%)
Mutual labels:  webcam
webcam-object-detection
Tensorflow.js webcam object detection in React
Stars: ✭ 24 (-83.33%)
Mutual labels:  webcam
Home-Monitoring-Raspberry-Pi-Node
Raspberry Pi & Node.js diy Home Monitoring & Intruder Alert system
Stars: ✭ 46 (-68.06%)
Mutual labels:  webcam
SimpleDALPlugin
Simple CoreMediaIO DAL virtual camera plugin example written in Swift
Stars: ✭ 138 (-4.17%)
Mutual labels:  webcam
Python-Course
🐍 This is the most complete course in Python, completely practical and all the lessons are explained with examples, so that they can be easily understood. 🍫
Stars: ✭ 18 (-87.5%)
Mutual labels:  cv2
avatars4all
Live real-time avatars from your webcam in the browser. No dedicated hardware or software installation needed. A pure Google Colab wrapper for live First-order-motion-model, aka Avatarify in the browser. And other Colabs providing an accessible interface for using FOMM, Wav2Lip and Liquid-warping-GAN with your own media and a rich GUI.
Stars: ✭ 187 (+29.86%)
Mutual labels:  webcam
temporalis
Slit-scan webcam with canvas
Stars: ✭ 105 (-27.08%)
Mutual labels:  webcam
DeepFaceLive
Real-time face swap for PC streaming or video calls
Stars: ✭ 7,917 (+5397.92%)
Mutual labels:  webcam
jeelizGlanceTracker
JavaScript/WebGL lib: detect if the user is looking at the screen or not from the webcam video feed. Lightweight and robust to all lighting conditions. Great for play/pause videos if the user is looking or not, or for person detection. Link to live demo.
Stars: ✭ 68 (-52.78%)
Mutual labels:  webcam
Backdoor
A backdoor that runs on Linux and Windows
Stars: ✭ 36 (-75%)
Mutual labels:  webcam
ToxicEye
👽 Program for remote control of windows computers via telegram bot. Written in C#
Stars: ✭ 305 (+111.81%)
Mutual labels:  webcam
Arduino-OpenCV-Human-Follower
Face detector and follower using Arduino and OpenCV in Python
Stars: ✭ 30 (-79.17%)
Mutual labels:  webcam
ARFaceFilter
Javascript/WebGL lightweight face tracking library designed for augmented reality webcam filters. Features : multiple faces detection, rotation, mouth opening. Various integration examples are provided (Three.js, Babylon.js, FaceSwap, Canvas2D, CSS3D...).
Stars: ✭ 72 (-50%)
Mutual labels:  webcam
simple-tasks
App to enable/disable microphone/webcam by (de)activating the correspondent modules
Stars: ✭ 16 (-88.89%)
Mutual labels:  webcam

Live-Streaming-using-OpenCV-Flask

A Flask Web-App to stream live from local webcam or CCTV (rtsp link)

Use Built-in Webcam of Laptop

Put Zero (O) in cv2.VideoCapture(0)

cv2.VideoCapture(0)

Use Ip Camera/CCTV/RTSP Link

cv2.VideoCapture('rtsp://username:password@camera_ip_address:554/user=username_password='password'_channel=channel_number_stream=0.sdp')

Example RTSP Link

cv2.VideoCapture('rtsp://mamun:[email protected]:554/user=mamun_password=123456_channel=0_stream=0.sdp')

Change Channel Number to Change the Camera

cv2.VideoCapture('rtsp://mamun:[email protected]:554/user=mamun_password=123456_channel=1_stream=0.sdp')

Display the resulting frame in browser

cv2.imencode('.jpg', frame)[1].tobytes()

Or this one

net , buffer = cv2.imencode('.jpg', frame)
buffer.tobytes()              

Reference

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].