mirror of
https://github.com/aler9/gortsplib
synced 2025-09-27 03:25:52 +08:00

* switch from v4 to v5 * remove deprecated entities * remove "2" suffix from entities * rename TransportProtocol into Protocol
171 lines
4.0 KiB
Go
171 lines
4.0 KiB
Go
// Package main contains an example.
|
|
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"log"
|
|
"sync"
|
|
|
|
"github.com/pion/rtp"
|
|
|
|
"github.com/bluenviron/gortsplib/v5"
|
|
"github.com/bluenviron/gortsplib/v5/pkg/base"
|
|
"github.com/bluenviron/gortsplib/v5/pkg/description"
|
|
"github.com/bluenviron/gortsplib/v5/pkg/format"
|
|
"github.com/bluenviron/gortsplib/v5/pkg/format/rtph264"
|
|
)
|
|
|
|
// This example shows how to:
|
|
// 1. create a RTSP server which accepts plain connections.
|
|
// 2. allow a single client to publish a stream, containing a H264 format.
|
|
// 3. save the content of the H264 media in a file in MPEG-TS format.
|
|
|
|
type serverHandler struct {
|
|
server *gortsplib.Server
|
|
mutex sync.Mutex
|
|
publisher *gortsplib.ServerSession
|
|
media *description.Media
|
|
format *format.H264
|
|
rtpDec *rtph264.Decoder
|
|
mpegtsMuxer *mpegtsMuxer
|
|
}
|
|
|
|
// called when a connection is opened.
|
|
func (sh *serverHandler) OnConnOpen(_ *gortsplib.ServerHandlerOnConnOpenCtx) {
|
|
log.Printf("conn opened")
|
|
}
|
|
|
|
// called when a connection is closed.
|
|
func (sh *serverHandler) OnConnClose(ctx *gortsplib.ServerHandlerOnConnCloseCtx) {
|
|
log.Printf("conn closed (%v)", ctx.Error)
|
|
}
|
|
|
|
// called when a session is opened.
|
|
func (sh *serverHandler) OnSessionOpen(_ *gortsplib.ServerHandlerOnSessionOpenCtx) {
|
|
log.Printf("session opened")
|
|
}
|
|
|
|
// called when a session is closed.
|
|
func (sh *serverHandler) OnSessionClose(_ *gortsplib.ServerHandlerOnSessionCloseCtx) {
|
|
log.Printf("session closed")
|
|
|
|
sh.mutex.Lock()
|
|
defer sh.mutex.Unlock()
|
|
|
|
sh.publisher = nil
|
|
sh.mpegtsMuxer.close()
|
|
}
|
|
|
|
// called when receiving an ANNOUNCE request.
|
|
func (sh *serverHandler) OnAnnounce(ctx *gortsplib.ServerHandlerOnAnnounceCtx) (*base.Response, error) {
|
|
log.Printf("ANNOUNCE request")
|
|
|
|
sh.mutex.Lock()
|
|
defer sh.mutex.Unlock()
|
|
|
|
if sh.publisher != nil {
|
|
sh.publisher.Close()
|
|
sh.mpegtsMuxer.close()
|
|
}
|
|
|
|
// find the H264 media and format
|
|
var forma *format.H264
|
|
medi := ctx.Description.FindFormat(&forma)
|
|
if medi == nil {
|
|
return &base.Response{
|
|
StatusCode: base.StatusBadRequest,
|
|
}, fmt.Errorf("H264 media not found")
|
|
}
|
|
|
|
// setup RTP -> H264 decoder
|
|
rtpDec, err := forma.CreateDecoder()
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
|
|
// setup H264 -> MPEGTS muxer
|
|
mpegtsMuxer := &mpegtsMuxer{
|
|
fileName: "mystream.ts",
|
|
sps: forma.SPS,
|
|
pps: forma.PPS,
|
|
}
|
|
err = mpegtsMuxer.initialize()
|
|
if err != nil {
|
|
return &base.Response{
|
|
StatusCode: base.StatusBadRequest,
|
|
}, err
|
|
}
|
|
|
|
sh.publisher = ctx.Session
|
|
sh.media = medi
|
|
sh.format = forma
|
|
sh.rtpDec = rtpDec
|
|
sh.mpegtsMuxer = mpegtsMuxer
|
|
|
|
return &base.Response{
|
|
StatusCode: base.StatusOK,
|
|
}, nil
|
|
}
|
|
|
|
// called when receiving a SETUP request.
|
|
func (sh *serverHandler) OnSetup(
|
|
ctx *gortsplib.ServerHandlerOnSetupCtx,
|
|
) (*base.Response, *gortsplib.ServerStream, error) {
|
|
// prevent readers from using the server.
|
|
if ctx.Session.State() == gortsplib.ServerSessionStateInitial {
|
|
return &base.Response{
|
|
StatusCode: base.StatusNotImplemented,
|
|
}, nil, nil
|
|
}
|
|
|
|
log.Printf("SETUP request")
|
|
|
|
return &base.Response{
|
|
StatusCode: base.StatusOK,
|
|
}, nil, nil
|
|
}
|
|
|
|
// called when receiving a RECORD request.
|
|
func (sh *serverHandler) OnRecord(ctx *gortsplib.ServerHandlerOnRecordCtx) (*base.Response, error) {
|
|
log.Printf("RECORD request")
|
|
|
|
// called when receiving a RTP packet
|
|
ctx.Session.OnPacketRTP(sh.media, sh.format, func(pkt *rtp.Packet) {
|
|
// decode timestamp
|
|
pts, ok := ctx.Session.PacketPTS(sh.media, pkt)
|
|
if !ok {
|
|
return
|
|
}
|
|
|
|
au, err := sh.rtpDec.Decode(pkt)
|
|
if err != nil {
|
|
return
|
|
}
|
|
|
|
// encode H264 access unit into MPEG-TS
|
|
sh.mpegtsMuxer.writeH264(au, pts) //nolint:errcheck
|
|
})
|
|
|
|
return &base.Response{
|
|
StatusCode: base.StatusOK,
|
|
}, nil
|
|
}
|
|
|
|
func main() {
|
|
// configure the server
|
|
h := &serverHandler{}
|
|
h.server = &gortsplib.Server{
|
|
Handler: h,
|
|
RTSPAddress: ":8554",
|
|
UDPRTPAddress: ":8000",
|
|
UDPRTCPAddress: ":8001",
|
|
MulticastIPRange: "224.1.0.0/16",
|
|
MulticastRTPPort: 8002,
|
|
MulticastRTCPPort: 8003,
|
|
}
|
|
|
|
// start server and wait until a fatal error
|
|
log.Printf("server is ready on %s", h.server.RTSPAddress)
|
|
panic(h.server.StartAndWait())
|
|
}
|