You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

376 lines
8.9 KiB

4 years ago
package webrtc
import (
"encoding/json"
"fmt"
"io/ioutil"
"net/http"
"regexp"
"strings"
4 years ago
"sync"
4 years ago
"time"
"github.com/Monibuca/engine/v3"
"github.com/Monibuca/plugin-webrtc/v3/webrtc"
// "github.com/Monibuca/plugin-webrtc/v3/webrtc"
"github.com/Monibuca/utils/v3"
4 years ago
"github.com/pion/rtcp"
. "github.com/pion/webrtc/v3"
"github.com/pion/webrtc/v3/pkg/media"
4 years ago
)
var config = struct {
4 years ago
ICEServers []string
PublicIP []string
PortMin uint16
PortMax uint16
PLI time.Duration
}{nil, nil, 0, 0, 2000}
4 years ago
// }{[]string{
// "stun:stun.ekiga.net",
// "stun:stun.ideasip.com",
// "stun:stun.schlund.de",
// "stun:stun.stunprotocol.org:3478",
// "stun:stun.voiparound.com",
// "stun:stun.voipbuster.com",
// "stun:stun.voipstunt.com",
// "stun:stun.voxgratia.org",
// "stun:stun.services.mozilla.com",
// "stun:stun.xten.com",
// "stun:stun.softjoys.com",
// "stun:stunserver.org",
// "stun:stun.schlund.de",
// "stun:stun.rixtelecom.se",
// "stun:stun.iptel.org",
// "stun:stun.ideasip.com",
// "stun:stun.fwdnet.net",
// "stun:stun.ekiga.net",
// "stun:stun01.sipphone.com",
// }}
4 years ago
// type udpConn struct {
// conn *net.UDPConn
// port int
// }
4 years ago
var (
playWaitList WaitList
reg_level = regexp.MustCompile("profile-level-id=(4.+f)")
api *API
)
4 years ago
type WaitList struct {
m map[string]*WebRTC
l sync.Mutex
}
func (wl *WaitList) Set(k string, v *WebRTC) {
wl.l.Lock()
defer wl.l.Unlock()
if wl.m == nil {
wl.m = make(map[string]*WebRTC)
}
wl.m[k] = v
}
func (wl *WaitList) Get(k string) *WebRTC {
wl.l.Lock()
defer wl.l.Unlock()
defer delete(wl.m, k)
return wl.m[k]
}
4 years ago
func init() {
engine.InstallPlugin(&engine.PluginConfig{
4 years ago
Config: &config,
4 years ago
Name: "WebRTC",
Run: run,
})
}
type WebRTC struct {
*PeerConnection
}
4 years ago
func (rtc *WebRTC) Publish(streamPath string) bool {
if _, err := rtc.AddTransceiverFromKind(RTPCodecTypeVideo); err != nil {
4 years ago
if err != nil {
utils.Println(err)
4 years ago
return false
}
}
stream := &engine.Stream{
Type: "WebRTC",
StreamPath: streamPath,
}
if stream.Publish() {
rtc.OnICEConnectionStateChange(func(connectionState ICEConnectionState) {
utils.Printf("%s Connection State has changed %s ", streamPath, connectionState.String())
switch connectionState {
case ICEConnectionStateDisconnected, ICEConnectionStateFailed:
stream.Close()
4 years ago
}
})
4 years ago
//f, _ := os.OpenFile("resource/live/rtc.h264", os.O_TRUNC|os.O_WRONLY, 0666)
rtc.OnTrack(func(track *TrackRemote, receiver *RTPReceiver) {
if codec := track.Codec(); track.Kind() == RTPCodecTypeAudio {
var at *engine.RTPAudio
4 years ago
switch codec.MimeType {
case MimeTypePCMA:
at = stream.NewRTPAudio(7)
at.Channels = byte(codec.Channels)
4 years ago
case MimeTypePCMU:
at = stream.NewRTPAudio(8)
at.Channels = byte(codec.Channels)
4 years ago
default:
return
}
for {
b := make([]byte, 1460)
if i, _, err := track.Read(b); err == nil {
at.Push(b[:i])
} else {
return
}
}
} else {
go func() {
ticker := time.NewTicker(time.Millisecond * config.PLI)
for {
select {
case <-ticker.C:
if rtcpErr := rtc.WriteRTCP([]rtcp.Packet{&rtcp.PictureLossIndication{MediaSSRC: uint32(track.SSRC())}}); rtcpErr != nil {
fmt.Println(rtcpErr)
}
case <-stream.Done():
return
}
}
}()
vt := stream.NewRTPVideo(7)
for {
b := make([]byte, 1460)
if i, _, err := track.Read(b); err == nil {
vt.Push(b[:i])
} else {
return
}
}
}
})
} else {
return false
}
return true
}
func (rtc *WebRTC) GetAnswer() ([]byte, error) {
4 years ago
// Sets the LocalDescription, and starts our UDP listeners
answer, err := rtc.CreateAnswer(nil)
if err != nil {
return nil, err
}
4 years ago
gatherComplete := GatheringCompletePromise(rtc.PeerConnection)
if err := rtc.SetLocalDescription(answer); err != nil {
4 years ago
return nil, err
}
4 years ago
<-gatherComplete
if bytes, err := json.Marshal(rtc.LocalDescription()); err != nil {
utils.Println(err)
4 years ago
return bytes, err
} else {
return bytes, nil
}
}
func run() {
4 years ago
var m MediaEngine
var s SettingEngine
if len(config.PublicIP) > 0 {
s.SetNAT1To1IPs(config.PublicIP, ICECandidateTypeHost)
}
4 years ago
if config.PortMin > 0 && config.PortMax > 0 {
s.SetEphemeralUDPPortRange(config.PortMin, config.PortMax)
}
// m.RegisterDefaultCodecs()
webrtc.RegisterCodecs(&m)
4 years ago
api = NewAPI(WithMediaEngine(&m), WithSettingEngine(s))
4 years ago
http.HandleFunc("/api/webrtc/play", func(w http.ResponseWriter, r *http.Request) {
4 years ago
utils.CORS(w, r)
w.Header().Set("Content-Type", "application/json")
streamPath := r.URL.Query().Get("streamPath")
4 years ago
var offer SessionDescription
var rtc WebRTC
4 years ago
sub := engine.Subscriber{
ID: r.RemoteAddr,
Type: "WebRTC",
}
bytes, err := ioutil.ReadAll(r.Body)
4 years ago
defer func() {
if err != nil {
utils.Println(err)
fmt.Fprintf(w, `{"errmsg":"%s"}`, err)
4 years ago
return
}
}()
if err != nil {
return
}
if err = json.Unmarshal(bytes, &offer); err != nil {
return
4 years ago
}
4 years ago
if err = sub.Subscribe(streamPath); err != nil {
return
}
4 years ago
4 years ago
if rtc.PeerConnection, err = api.NewPeerConnection(Configuration{}); err != nil {
4 years ago
return
}
4 years ago
rtc.OnICECandidate(func(ice *ICECandidate) {
if ice != nil {
utils.Println(ice.ToJSON().Candidate)
4 years ago
}
})
if err = rtc.SetRemoteDescription(offer); err != nil {
return
}
vt := sub.WaitVideoTrack("h264")
at := sub.WaitAudioTrack("pcma", "pcmu")
var videoTrack *TrackLocalStaticSample
var rtpSender *RTPSender
4 years ago
if vt != nil {
pli := "42001f"
pli = fmt.Sprintf("%x", vt.ExtraData.NALUs[0][1:4])
4 years ago
if !strings.Contains(offer.SDP, pli) {
pli = reg_level.FindAllStringSubmatch(offer.SDP, -1)[0][1]
}
if videoTrack, err = NewTrackLocalStaticSample(RTPCodecCapability{MimeType: MimeTypeH264, SDPFmtpLine: "level-asymmetry-allowed=1;packetization-mode=1;profile-level-id=" + pli}, "video", "m7s"); err != nil {
return
}
rtpSender, err = rtc.AddTrack(videoTrack)
if err != nil {
4 years ago
return
}
var lastTimeStampV uint32
3 years ago
sub.OnVideo = func(ts uint32, pack *engine.VideoPack) {
var s uint32 = 40
4 years ago
if lastTimeStampV > 0 {
3 years ago
s = ts - lastTimeStampV
4 years ago
}
3 years ago
lastTimeStampV = ts
if pack.IDR {
err = videoTrack.WriteSample(media.Sample{
Data: vt.ExtraData.NALUs[0],
4 years ago
})
err = videoTrack.WriteSample(media.Sample{
Data: vt.ExtraData.NALUs[1],
})
}
for _, nalu := range pack.NALUs {
err = videoTrack.WriteSample(media.Sample{
Data: nalu,
Duration: time.Millisecond * time.Duration(s),
4 years ago
})
}
}
go func() {
rtcpBuf := make([]byte, 1500)
for {
if n, _, rtcpErr := rtpSender.Read(rtcpBuf); rtcpErr != nil {
return
} else {
if p, err := rtcp.Unmarshal(rtcpBuf[:n]); err == nil {
for _, pp := range p {
switch pp.(type) {
case *rtcp.PictureLossIndication:
3 years ago
fmt.Println("PictureLossIndication")
}
}
}
}
}
}()
}
4 years ago
if at != nil {
var audioTrack *TrackLocalStaticSample
audioMimeType := MimeTypePCMA
if at.CodecID == 8 {
4 years ago
audioMimeType = MimeTypePCMU
}
if audioTrack, err = NewTrackLocalStaticSample(RTPCodecCapability{audioMimeType, 8000, 0, "", nil}, "audio", "m7s"); err != nil {
return
}
if _, err = rtc.AddTrack(audioTrack); err != nil {
return
}
var lastTimeStampA uint32
3 years ago
sub.OnAudio = func(ts uint32, pack *engine.AudioPack) {
4 years ago
var s uint32
if lastTimeStampA > 0 {
3 years ago
s = ts - lastTimeStampA
4 years ago
}
3 years ago
lastTimeStampA = ts
4 years ago
audioTrack.WriteSample(media.Sample{
Data: pack.Raw, Duration: time.Millisecond * time.Duration(s),
4 years ago
})
}
}
4 years ago
if bytes, err := rtc.GetAnswer(); err == nil {
w.Write(bytes)
rtc.OnConnectionStateChange(func(pcs PeerConnectionState) {
utils.Printf("%s Connection State has changed %s ", streamPath, pcs.String())
switch pcs {
case PeerConnectionStateConnected:
4 years ago
if at != nil {
go sub.PlayAudio(at)
4 years ago
}
if vt != nil {
go sub.PlayVideo(vt)
4 years ago
}
case PeerConnectionStateDisconnected, PeerConnectionStateFailed:
sub.Close()
rtc.PeerConnection.Close()
4 years ago
}
})
4 years ago
} else {
return
4 years ago
}
})
4 years ago
http.HandleFunc("/api/webrtc/publish", func(w http.ResponseWriter, r *http.Request) {
utils.CORS(w, r)
4 years ago
streamPath := r.URL.Query().Get("streamPath")
offer := SessionDescription{}
bytes, err := ioutil.ReadAll(r.Body)
err = json.Unmarshal(bytes, &offer)
if err != nil {
utils.Println(err)
4 years ago
return
}
rtc := new(WebRTC)
if rtc.PeerConnection, err = api.NewPeerConnection(Configuration{}); err != nil {
return
}
4 years ago
if rtc.Publish(streamPath) {
if err := rtc.SetRemoteDescription(offer); err != nil {
utils.Println(err)
return
}
if bytes, err = rtc.GetAnswer(); err == nil {
4 years ago
w.Write(bytes)
} else {
utils.Println("GetAnswer:", err)
4 years ago
w.Write([]byte(err.Error()))
return
}
4 years ago
} else {
w.Write([]byte("bad name"))
4 years ago
}
})
}