Fei Su
Fei Su

Reputation: 9

streaming camera captured video to another location

I am using Kinect camera capture images and compress them to video and save the video into the disk(python opencv). How can I stream and display it at another location? Because the video is made at real-time and I also need to display and stream it in real time.

Upvotes: 0

Views: 1047

Answers (1)

karlphillip
karlphillip

Reputation: 93410

Gstreamer >= version 0.10:

The threading ability of 0.10 is an absolute must for any high-fidelity real-time media streaming.

GStreamer has bindings for python, and this interesting post will help you get started.

This post shares some useful Python code as well.

Upvotes: 1

Related Questions