Skip to main content

A Python package for easily streaming OpenCV footage, even with authentication

Project description

Flask-OpenCV-Streamer

A Python package for easily streaming OpenCV footage, even with authentication

Installation

Install via PyPi using Pip / PipEnv:

pip install flask_opencv_streamer

Usage

Usage is quite straight forward. After importing, you can create as many streamer objects as you wish.

Example Code:

Without authentication (no login required to view page)

from flask_opencv_streamer.streamer import Streamer
import cv2

port = 3030
require_login = False
streamer = Streamer(port, require_login)

# Open video device 0
video_capture = cv2.VideoCapture(0)

while True:
    _, frame = video_capture.read()

    streamer.update_frame(frame)

    if not streamer.is_streaming:
        streamer.start_streaming()

    cv2.waitKey(30)

With authentication (A password will be generated for you, expiring every 24 hrs)

from flask_opencv_streamer.streamer import Streamer
import cv2

port = 3030
require_login = True
login_file = "logins.txt"
login_key = "loginkey.txt
streamer = Streamer(port, require_login, login_file=login_file, login_key=login_key)

# Open video device 0
video_capture = cv2.VideoCapture(0)

while True:
    _, frame = video_capture.read()

    streamer.update_frame(frame)

    if not streamer.is_streaming:
        streamer.start_streaming()

    cv2.waitKey(30)

If there is no logins file or key found at the path given, it will create one for you. Logins will be stored in a .txt file logins.txt but will be encrypted. Therefore, unless someone has the key (in this example, loginkey.txt) the logins.txt file will be able to show logins or passwords. It is very unsafe to keep the login key somewhere publicly accessible; it's suggested you hide it well and do not upload it anywhere.

Adding or removing your own logins

In your root project directory, you can include a templates folder which can be used for password change templates. Your file names must be:

  • form.html: Contains the HTML form for the password change.
  • pass.html: Contains the HTML for a pass event
  • fail.html: Contains the HTML for a fail event

Samples are included here in this repository

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

flask_opencv_streamer-1.4.tar.gz (5.1 kB view details)

Uploaded Source

Built Distribution

flask_opencv_streamer-1.4-py3-none-any.whl (18.4 kB view details)

Uploaded Python 3

File details

Details for the file flask_opencv_streamer-1.4.tar.gz.

File metadata

  • Download URL: flask_opencv_streamer-1.4.tar.gz
  • Upload date:
  • Size: 5.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.7.3

File hashes

Hashes for flask_opencv_streamer-1.4.tar.gz
Algorithm Hash digest
SHA256 3df8eb0b72946d6fd3c8cadfcd9631eecb6845d15d66e0e23b1ce9c83412ab5b
MD5 41b690a8d0c2d275765d70bdcf5ce030
BLAKE2b-256 05828703255c1f0e0d43efb7576cd544b04cb8946bc7f62eded9a3b115ae1743

See more details on using hashes here.

File details

Details for the file flask_opencv_streamer-1.4-py3-none-any.whl.

File metadata

  • Download URL: flask_opencv_streamer-1.4-py3-none-any.whl
  • Upload date:
  • Size: 18.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.7.3

File hashes

Hashes for flask_opencv_streamer-1.4-py3-none-any.whl
Algorithm Hash digest
SHA256 6f7e763fd9f6a718c38b735b053fc5b57e6e8a272aff597ad229fe92dd5077fa
MD5 ff29cf50f7383dfed3e468313309fadf
BLAKE2b-256 52e5a9b8b2cab2132ba41438ab81406aef4185527e7958a8b007ed6778b9b9e9

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page