You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lal/app/demo/learnrtsp/learnrtsp.go

39 lines
749 B
Go

// Copyright 2020, Chef. All rights reserved.
// https://github.com/q191201771/lal
//
// Use of this source code is governed by a MIT-style license
// that can be found in the License file.
//
// Author: Chef (191201771@qq.com)
package main
import (
"github.com/q191201771/lal/pkg/rtsp"
"github.com/q191201771/naza/pkg/nazalog"
)
func main() {
go func() {
r := rtsp.NewRTPServer(":8000")
err := r.Listen()
nazalog.Assert(nil, err)
err = r.RunLoop()
nazalog.Error(err)
}()
go func() {
r := rtsp.NewRTCPServer(":8001")
err := r.Listen()
nazalog.Assert(nil, err)
err = r.RunLoop()
nazalog.Error(err)
}()
s := rtsp.NewServer(":5544")
err := s.Listen()
nazalog.Assert(nil, err)
err = s.RunLoop()
nazalog.Error(err)
}