• Stars
    star
    153
  • Rank 243,368 (Top 5 %)
  • Language
    Python
  • License
    MIT License
  • Created about 3 years ago
  • Updated over 1 year ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

MaryJane MJPEG server in < 30 lines Python

MaryJane is a simple MJPEG server written in Python.

Live demo of MaryJane

Project status:

Created 6 Oct 2021 by Andrew Stuart [email protected]

License: MIT

You are welcome to post questions in the github issues but don't expect an answer - I may or may not be interested in reading/fixing issues.

How to use it:

To display an mjpeg stream on a web page, just put the address in an image tag:

<img src="http://18.116.60.15:8080/maryjane/"/>

How it works:

The server loads the same jpeg file from the file system and sends it to the web browser.

It does this continuously.

That's pretty much it. It's less than 30 lines of code - have a look.

It is the responsibility of something else to keep replacing that file with the latest frame in the video stream.

For example, the following command reads frames from a video file and constantly replaces the output filename with the current frame:

ffmpeg -y -re -stream_loop -1 -i monster-family-2-teaser_h480p.mov -f image2 -update 1 /dev/shm/img.jpeg