mirror of
https://github.com/pion/webrtc.git
synced 2025-10-05 23:26:58 +08:00

This commit has breaking changes. This API change means we can no longer support an arbitrary number of receivers. For every track you want to receive you MUST call PeerConnection.AddTransceiver We do now support sending an multiple audio/video feeds. You can see this behavior via gstreamer-receive and gstreamer-send currently. Resolves #54
159 lines
4.1 KiB
Go
159 lines
4.1 KiB
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
"time"
|
|
|
|
"github.com/pions/rtcp"
|
|
"github.com/pions/webrtc"
|
|
"github.com/pions/webrtc/pkg/media"
|
|
"github.com/pions/webrtc/pkg/media/ivfwriter"
|
|
"github.com/pions/webrtc/pkg/media/opuswriter"
|
|
|
|
"github.com/pions/webrtc/examples/internal/signal"
|
|
)
|
|
|
|
func saveToDisk(i media.Writer, track *webrtc.Track) {
|
|
defer func() {
|
|
if err := i.Close(); err != nil {
|
|
panic(err)
|
|
}
|
|
}()
|
|
|
|
for {
|
|
rtpPacket, err := track.ReadRTP()
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
if err := i.WriteRTP(rtpPacket); err != nil {
|
|
panic(err)
|
|
}
|
|
}
|
|
}
|
|
|
|
func main() {
|
|
// Create a MediaEngine object to configure the supported codec
|
|
m := webrtc.MediaEngine{}
|
|
|
|
// Setup the codecs you want to use.
|
|
// We'll use a VP8 codec but you can also define your own
|
|
m.RegisterCodec(webrtc.NewRTPOpusCodec(webrtc.DefaultPayloadTypeOpus, 48000))
|
|
m.RegisterCodec(webrtc.NewRTPVP8Codec(webrtc.DefaultPayloadTypeVP8, 90000))
|
|
|
|
// Create the API object with the MediaEngine
|
|
api := webrtc.NewAPI(webrtc.WithMediaEngine(m))
|
|
|
|
// Everything below is the pion-WebRTC API! Thanks for using it ❤️.
|
|
|
|
// Prepare the configuration
|
|
config := webrtc.Configuration{
|
|
ICEServers: []webrtc.ICEServer{
|
|
{
|
|
URLs: []string{"stun:stun.l.google.com:19302"},
|
|
},
|
|
},
|
|
}
|
|
|
|
// Create a new RTCPeerConnection
|
|
peerConnection, err := api.NewPeerConnection(config)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
|
|
// Allow us to receive 1 audio track, and 1 video track
|
|
if _, err = peerConnection.AddTransceiver(webrtc.RTPCodecTypeAudio); err != nil {
|
|
panic(err)
|
|
} else if _, err = peerConnection.AddTransceiver(webrtc.RTPCodecTypeVideo); err != nil {
|
|
panic(err)
|
|
}
|
|
|
|
opusFile, err := opuswriter.New("output.opus", 48000, 2)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
ivfFile, err := ivfwriter.New("output.ivf")
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
|
|
// Set a handler for when a new remote track starts, this handler saves buffers to disk as
|
|
// an ivf file, since we could have multiple video tracks we provide a counter.
|
|
// In your application this is where you would handle/process video
|
|
peerConnection.OnTrack(func(track *webrtc.Track, receiver *webrtc.RTPReceiver) {
|
|
// Send a PLI on an interval so that the publisher is pushing a keyframe every rtcpPLIInterval
|
|
go func() {
|
|
ticker := time.NewTicker(time.Second * 3)
|
|
for range ticker.C {
|
|
errSend := peerConnection.WriteRTCP(&rtcp.PictureLossIndication{MediaSSRC: track.SSRC()})
|
|
if errSend != nil {
|
|
fmt.Println(errSend)
|
|
}
|
|
}
|
|
}()
|
|
|
|
codec := track.Codec()
|
|
if codec.Name == webrtc.Opus {
|
|
fmt.Println("Got Opus track, saving to disk as output.opus (48 kHz, 2 channels)")
|
|
saveToDisk(opusFile, track)
|
|
} else if codec.Name == webrtc.VP8 {
|
|
fmt.Println("Got VP8 track, saving to disk as output.ivf")
|
|
saveToDisk(ivfFile, track)
|
|
}
|
|
})
|
|
|
|
// Set the handler for ICE connection state
|
|
// This will notify you when the peer has connected/disconnected
|
|
peerConnection.OnICEConnectionStateChange(func(connectionState webrtc.ICEConnectionState) {
|
|
fmt.Printf("Connection State has changed %s \n", connectionState.String())
|
|
|
|
if connectionState == webrtc.ICEConnectionStateConnected {
|
|
fmt.Println("Ctrl+C the remote client to stop the demo")
|
|
} else if connectionState == webrtc.ICEConnectionStateFailed ||
|
|
connectionState == webrtc.ICEConnectionStateDisconnected {
|
|
|
|
closeErr := opusFile.Close()
|
|
if closeErr != nil {
|
|
panic(closeErr)
|
|
}
|
|
|
|
closeErr = ivfFile.Close()
|
|
if closeErr != nil {
|
|
panic(closeErr)
|
|
|
|
}
|
|
|
|
fmt.Println("Done writing media files")
|
|
os.Exit(0)
|
|
}
|
|
})
|
|
|
|
// Wait for the offer to be pasted
|
|
offer := webrtc.SessionDescription{}
|
|
signal.Decode(signal.MustReadStdin(), &offer)
|
|
|
|
// Set the remote SessionDescription
|
|
err = peerConnection.SetRemoteDescription(offer)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
|
|
// Create answer
|
|
answer, err := peerConnection.CreateAnswer(nil)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
|
|
// Sets the LocalDescription, and starts our UDP listeners
|
|
err = peerConnection.SetLocalDescription(answer)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
|
|
// Output the answer in base64 so we can paste it in browser
|
|
fmt.Println(signal.Encode(answer))
|
|
|
|
// Block forever
|
|
select {}
|
|
}
|