All Projects → CT83 → Smoothstream

CT83 / Smoothstream

Licence: gpl-3.0
Webcam, PiCamera streaming over the network with Python made easy.

Programming Languages

python
139335 projects - #7 most used programming language
python3
1442 projects
python36
32 projects

Projects that are alternatives of or similar to Smoothstream

Lol Html
Low output latency streaming HTML parser/rewriter with CSS selector-based API
Stars: ✭ 566 (+325.56%)
Mutual labels:  stream, streaming
Soundwaveinteractive
Interactive Sound Board for Mixer. Microsoft shut Mixer down, so this application no longer works. RIP Mixer.
Stars: ✭ 27 (-79.7%)
Mutual labels:  stream, streaming
Raftlib
The RaftLib C++ library, streaming/dataflow concurrency via C++ iostream-like operators
Stars: ✭ 717 (+439.1%)
Mutual labels:  opencv, streaming
Rxgo
Reactive Extensions for the Go language.
Stars: ✭ 3,907 (+2837.59%)
Mutual labels:  stream, streaming
Rtmp Rtsp Stream Client Java
Library to stream in rtmp and rtsp for Android. All code in Java
Stars: ✭ 1,338 (+906.02%)
Mutual labels:  stream, streaming
Movienight
Single instance video streaming server with integrated chat.
Stars: ✭ 387 (+190.98%)
Mutual labels:  stream, streaming
Libzmq
ZeroMQ core engine in C++, implements ZMTP/3.1
Stars: ✭ 7,418 (+5477.44%)
Mutual labels:  stream, zeromq
Diffy
🎞️💓🍿 Love streaming - It's always best to watch a movie together ! 🤗
Stars: ✭ 37 (-72.18%)
Mutual labels:  streaming, stream
Athenax
SQL-based streaming analytics platform at scale
Stars: ✭ 1,178 (+785.71%)
Mutual labels:  stream, streaming
Cypher Stream
Neo4j Cypher queries as Node.js object streams
Stars: ✭ 58 (-56.39%)
Mutual labels:  stream, streaming
Multistreamer
[discontinued] A webapp for publishing video to multiple streaming services at once.
Stars: ✭ 281 (+111.28%)
Mutual labels:  stream, streaming
Nginx Vod Module
NGINX-based MP4 Repackager
Stars: ✭ 1,378 (+936.09%)
Mutual labels:  stream, streaming
Pushpin
Proxy server for adding push to your API
Stars: ✭ 3,050 (+2193.23%)
Mutual labels:  zeromq, streaming
Ustreamer
µStreamer - Lightweight and fast MJPG-HTTP streamer
Stars: ✭ 533 (+300.75%)
Mutual labels:  stream, streaming
Rtspallthethings
Deprecated RTSP media server -- Use github.com/aler9/rtsp-simple-server instead.
Stars: ✭ 258 (+93.98%)
Mutual labels:  stream, streaming
Nuclear
Streaming music player that finds free music for you
Stars: ✭ 7,133 (+5263.16%)
Mutual labels:  stream, streaming
chromecast-api
📺 Chromecast Node.js module
Stars: ✭ 122 (-8.27%)
Mutual labels:  streaming, stream
TogetherStream
A social and synchronized streaming experience
Stars: ✭ 16 (-87.97%)
Mutual labels:  streaming, stream
Saber
Window-Based Hybrid CPU/GPU Stream Processing Engine
Stars: ✭ 35 (-73.68%)
Mutual labels:  stream, streaming
Hls.js
HLS.js is a JavaScript library that plays HLS in browsers with support for MSE.
Stars: ✭ 10,791 (+8013.53%)
Mutual labels:  stream, streaming

SmoothStream Build Status

Webcam and PiCamera Streaming over the Network with Python

Getting Started

SmoothStream is a Python Application which makes streaming video from webcams over the network a breeze.

Streaming images from your Webcam over the network should be easy, right?

Nope. After pulling my hair out, searching on the internet for weeks, scavenging through old forum posts and digging through old StackOverflow questions, I came up empty-handed. (Most of the code examples were outdated and worked only in Python 2) Until I stumbled upon this StackOverflow Question.

I decided it was 'bout time someone did something about it.

The StreamViewer needs to start listening for incoming stream from the Streamer, once an incoming stream is detected it is displayed on the screen.

SmoothStream currently has a dependency on ZeroMQ and I don't see a way around it.

So, PRs are always welcome.

Prerequisites

  1. Webcam (duh!)

Installing

A step by step series of examples that tell you how to get a development env running

  1. Install all the requirements
pip install -r requirements.txt
  1. Start the viewer, on the server.
python StreamViewer.py
  1. On another machine connected to the same network, start the streamer, and enter the IP of the machine running the StreamViewer.
python Streamer.py -s 192.168.1.X

You will see the video being streamed across the network to your Viewer.

Running the tests (WebCam Needed)

python -m unittest discover .
  1. test_camera.py - Tests if camera can be detected with OpenCV

    python -m unittest camera.test_camera

  2. test_local_streaming.py - Tests Streaming and Viewing silently locally

    python -m unittest test_local_streaming

Alternatives from around the internet which failed to work.

http://answers.opencv.org/question/19055/video-over-the-network/ https://github.com/yushuhuang/webcam https://stackoverflow.com/questions/30988033/sending-live-video-frame-over-network-in-python-opencv https://stackoverflow.com/questions/49084143/opencv-live-stream-video-over-socket-in-python-3 https://stackoverflow.com/questions/43299440/how-to-send-live-video-over-network-in-python https://stackoverflow.com/questions/36265183/how-to-get-video-frame-by-frame-from-stream-using-opencv-and-python https://stackoverflow.com/questions/29099839/opencv-stream-from-a-camera-connected-to-a-remote-machine https://raspberrypi.stackexchange.com/questions/72308/how-to-stream-video-via-socket-using-opencv-and-picamera

Built With

  • OpenCV - a library of programming functions mainly aimed at real-time computer vision.
  • ZeroMQ - a high-performance asynchronous messaging library, aimed at use in distributed or concurrent applications.

Contributing

Please read CONTRIBUTING.md for details on our code of conduct, and the process for submitting pull requests to us.

Authors

License

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

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].