egeakman / mjpeg-streamer

Simple, flexible and efficient MJPEG video streamer

Home Page:https://pypi.org/project/mjpeg-streamer

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

mjpeg-streamer

Overview

The mjpeg-streamer package provides a simple, flexible and efficient way to stream MJPEG video from OpenCV-compatible sources over HTTP. It provides a flexible interface that allows users to specify the video source and configure various parameters such as image size, quality, and FPS.

Installation

You can install the package via pip:

pip install mjpeg-streamer

I would really recommend using --prefer-binary, especially with older versions of Python (e.g. 3.6). This will install pre-compiled binaries instead of building from source, which is much faster and less error-prone.

pip install mjpeg-streamer --prefer-binary

Latest versions of dependencies (e.g. Numpy) don't always ship with pre-compiled binaries for older versions of Python, so this option installs the latest compatible version instead, even though it might be a bit older.

Usage

Here's a simple example that shows how to use the MJPEG Server package to stream video from a webcam:

import cv2
from mjpeg_streamer import MjpegServer, Stream

cap = cv2.VideoCapture(0)

stream = Stream("my_camera", size=(640, 480), quality=50, fps=30)

server = MjpegServer("localhost", 8080)
server.add_stream(stream)
server.start()

while True:
    _, frame = cap.read()
    cv2.imshow(stream.name, frame)
    if cv2.waitKey(1) == ord("q"):
        break

    stream.set_frame(frame)

server.stop()
cap.release()
cv2.destroyAllWindows()

This example starts the MJPEG server on localhost:8080 and streams video from the webcam with the index of 0. The video is resized to 640x480 pixels, compressed with JPEG quality of 50, and streamed at 30 FPS.

To view the video stream, you can open a web browser and navigate to http://localhost:8080/my_camera.

Don't forget to check out the tests directory for more examples.

Class Reference

Stream

A class that represents a single video stream. A stream consists of a sequence of frames that can be set and retrieved using the set_frame and get_frame methods.

Constructor:

Stream(name: str, size: Optional[Tuple[int, int]] = None, quality: int = 50, fps: int = 24)

Creates a new Stream instance with the given unique name, image size, JPEG quality (1-100), and FPS.

Methods:

  • set_frame

    set_frame(frame: np.ndarray)

    Sets the current frame to the given Numpy array (OpenCV frame).


  • get_bandwidth

    get_bandwidth()

    Returns the bandwidth of the stream in bytes per second.


  • get_frame

    get_frame()

    Returns the current frame as a Numpy array.

MjpegServer

A class that represents an MJPEG server. The server can serve multiple video streams, each identified by a unique name.

Constructor:

MjpegServer(host: str = "localhost", port: int = 8080)

Creates a new MjpegServer instance with the given host and port.

Methods:

  • add_stream

    add_stream(stream: Stream)

    Adds a new video stream to the server.


  • start

    start()

    Starts the server in a separate thread.


  • stop

    stop()

    Stops the server.

Contributing

Contributions are welcome! Please open an issue or submit a pull request.

License

This project is licensed under the AGPL-3.0 License - see the LICENSE file for details.

TL;DR: You can use, modify, and distribute this software for free or for profit, but you must make the source code available to your users and include a copy of this license in your project. This license should also mention the original author and a link to this repository.

About

Simple, flexible and efficient MJPEG video streamer

https://pypi.org/project/mjpeg-streamer

License:GNU Affero General Public License v3.0


Languages

Language:Python 100.0%