Giter VIP home page Giter VIP logo

peerstreamer-ng's Introduction

PeerStreamer-ng

PeerStreamer-ng [1] is P2P real-time streaming platform. It is specifically designed for mesh networks and it is meant to be purely decentralized.

Documentation

You can find documentation on usage and development on the official wiki: https://ans.disi.unitn.it/redmine/projects/peerstreamer-ng/wiki

Compilation

You need to install Janus dependencies, on ubuntu:

sudo apt install libmicrohttpd-dev libjansson-dev libnice-dev \
	libssl-dev libsrtp-dev libsofia-sip-ua-dev libglib2.0-dev \
	libopus-dev libogg-dev libcurl4-openssl-dev pkg-config gengetopt \
	libtool automake

After that, you can get the executable by running: $> make

To turn on all the debugging features, set the DEBUG environment variable: $> DEBUG=1 make

Test

PeerStreamer-ng comes with a unit test suite. It does require valgrind installed to run. In the "test" folder are stored the test files. To run them and check code consistency run: $> make tests

Tutorial: Stream a web camera with WebRTC

Tested on Ubuntu 17.10

In this tutorial we are creating a streaming source first,

  • Acquiring a media content from a local (usb) camera;
  • Encapsulating it in a RTP stream;
  • Creating a pstreamer P2P overlay;
  • Injecting the RTP stream in the overlay.

Then, we will launch PeerStreamer-ng to serve the P2P stream to the user through a browser supporting WebRTC.

The source

The following script captures a usb camera (/dev/video0) with FFmpeg which is used to stream it locally through RTP. It is important to note, to be able to serve the stream through WebRTC, FFmpeg must transcode the video with VP8. It also launches a source instance of pstreamer that takes such stream in input and use P2P mechanism to distribute it to the attaching peers.

Overall, this script creates a PeerStreamer-ng channel at IP address 127.0.0.1 on port 6000 and it saves its description on a local channel list file called channels.csv which we will use to feed PeerStreamer-ng with.

NAME="My Channel"
VIDEO=/dev/video0
SDPFILE="file://${PWD}/channel.sdp"
SOURCE_PEER_PORT=6000
RTP_BASE_PORT=5002
HOST_EXT_IP=127.0.0.1

echo "$NAME,$HOST_EXT_IP,$SOURCE_PEER_PORT,QUALITY,http://$HOST_EXT_IP:8000/channel.sdp" > channels.csv

ffmpeg -re -i ${VIDEO} -vcodec libvpx -deadline realtime -an -f rtp rtp://127.0.0.1:$((RTP_BASE_PORT+2))\
	-sdp_file $SDPFILE &
FFMPEG_PID=$!

Libs/pstreamer/pstreamer -p 0 -c "iface=lo,port=$SOURCE_PEER_PORT,chunkiser=rtp,audio=$RTP_BASE_PORT,\
	video=$((RTP_BASE_PORT+2)),addr=127.0.0.1,max_delay_ms=50" 
SOURCE_PEER_PID=$!

trap "kill $SOURCE_PEER_PID $FFMPEG_PID" SIGINT SIGTERM EXIT

You can download the script above from the project site.

PeerStreamer-ng

The following command executes PeerStreamer-ng and it start the HTTP interfaces. Pages are now served on port 3000 (overridable through the flags, see the command line help).

./peerstreamer-ng -c channel.csv

References

[1] https://ans.disi.unitn.it/redmine/projects/peerstreamer-ng

peerstreamer-ng's People

Contributors

lucabaldesi avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.