Files
webrtc/examples/play-from-disk-renegotation
Sean DuBois 9715626a0c Revert "Read/Write RTP/RTCP packets with context"
This change caused a ~24% performance decrease

Relates to pion/webrtc#1564

This reverts commit 47a7a64898.
2020-12-02 20:11:06 -08:00
..
2020-11-15 09:20:47 -08:00
2020-03-06 19:26:08 -08:00

play-from-disk-renegotiation

play-from-disk-renegotiation demonstrates Pion WebRTC's renegotiation abilities.

For a simpler example of playing a file from disk we also have examples/play-from-disk

Instructions

Download play-from-disk-renegotiation

This example requires you to clone the repo since it is serving static HTML.

mkdir -p $GOPATH/src/github.com/pion
cd $GOPATH/src/github.com/pion
git clone https://github.com/pion/webrtc.git
cd webrtc/examples/play-from-disk-renegotiation

Create IVF named output.ivf that contains a VP8 track

ffmpeg -i $INPUT_FILE -g 30 output.ivf

Run play-from-disk-renegotiation

The output.ivf you created should be in the same directory as play-from-disk-renegotiation. Execute go run *.go

Open the Web UI

Open http://localhost:8080 and you should have a Add Track and Remove Track button. Press these to add as many tracks as you want, or to remove as many as you wish.

Congrats, you have used Pion WebRTC! Now start building something cool