ghostream/stream/webrtc/ingest.go

147 lines
4.1 KiB
Go
Raw Normal View History

2020-10-05 08:11:30 +00:00
package webrtc
import (
"bufio"
"io"
"log"
"net"
"os/exec"
"github.com/pion/rtp"
"gitlab.crans.org/nounous/ghostream/stream/srt"
)
func ingestFrom(inputChannel chan srt.Packet) {
// FIXME Clean code
var ffmpeg *exec.Cmd
var ffmpegInput io.WriteCloser
2020-10-05 09:38:17 +00:00
2020-10-05 08:11:30 +00:00
for {
var err error = nil
packet := <-inputChannel
switch packet.PacketType {
case "register":
log.Printf("WebRTC RegisterStream %s", packet.StreamName)
// Open a UDP Listener for RTP Packets on port 5004
videoListener, err := net.ListenUDP("udp", &net.UDPAddr{IP: net.ParseIP("127.0.0.1"), Port: 5004})
if err != nil {
2020-10-05 09:38:17 +00:00
log.Printf("Faited to open UDP listener %s", err)
return
2020-10-05 08:11:30 +00:00
}
audioListener, err := net.ListenUDP("udp", &net.UDPAddr{IP: net.ParseIP("127.0.0.1"), Port: 5005})
if err != nil {
2020-10-05 09:38:17 +00:00
log.Printf("Faited to open UDP listener %s", err)
return
2020-10-05 08:11:30 +00:00
}
defer func() {
if err = videoListener.Close(); err != nil {
2020-10-05 09:38:17 +00:00
log.Printf("Faited to close UDP listener %s", err)
2020-10-05 08:11:30 +00:00
}
if err = audioListener.Close(); err != nil {
2020-10-05 09:38:17 +00:00
log.Printf("Faited to close UDP listener %s", err)
2020-10-05 08:11:30 +00:00
}
}()
2020-10-05 09:08:22 +00:00
ffmpeg = exec.Command("ffmpeg", "-hide_banner", "-loglevel", "error", "-re", "-i", "pipe:0",
2020-10-05 08:11:30 +00:00
"-an", "-vcodec", "libvpx", //"-cpu-used", "5", "-deadline", "1", "-g", "10", "-error-resilient", "1", "-auto-alt-ref", "1",
"-f", "rtp", "rtp://127.0.0.1:5004",
"-vn", "-acodec", "libopus", //"-cpu-used", "5", "-deadline", "1", "-g", "10", "-error-resilient", "1", "-auto-alt-ref", "1",
"-f", "rtp", "rtp://127.0.0.1:5005")
input, err := ffmpeg.StdinPipe()
if err != nil {
panic(err)
}
ffmpegInput = input
errOutput, err := ffmpeg.StderrPipe()
if err != nil {
panic(err)
}
if err := ffmpeg.Start(); err != nil {
panic(err)
}
// Receive video
go func() {
for {
inboundRTPPacket := make([]byte, 1500) // UDP MTU
n, _, err := videoListener.ReadFromUDP(inboundRTPPacket)
if err != nil {
2020-10-05 09:38:17 +00:00
log.Printf("Failed to read from UDP: %s", err)
continue
2020-10-05 08:11:30 +00:00
}
packet := &rtp.Packet{}
if err := packet.Unmarshal(inboundRTPPacket[:n]); err != nil {
2020-10-05 09:38:17 +00:00
log.Printf("Failed to unmarshal RTP packet: %s", err)
continue
2020-10-05 08:11:30 +00:00
}
// Write RTP packet to all video tracks
// Adapt payload and SSRC to match destination
2020-10-05 08:11:30 +00:00
for _, videoTrack := range videoTracks {
packet.Header.PayloadType = videoTrack.PayloadType()
packet.Header.SSRC = videoTrack.SSRC()
2020-10-05 08:11:30 +00:00
if writeErr := videoTrack.WriteRTP(packet); writeErr != nil {
2020-10-05 09:38:17 +00:00
log.Printf("Failed to write to video track: %s", err)
continue
2020-10-05 08:11:30 +00:00
}
}
}
}()
// Receive audio
go func() {
for {
inboundRTPPacket := make([]byte, 1500) // UDP MTU
n, _, err := audioListener.ReadFromUDP(inboundRTPPacket)
if err != nil {
2020-10-05 09:38:17 +00:00
log.Printf("Failed to read from UDP: %s", err)
continue
2020-10-05 08:11:30 +00:00
}
packet := &rtp.Packet{}
if err := packet.Unmarshal(inboundRTPPacket[:n]); err != nil {
2020-10-05 09:38:17 +00:00
log.Printf("Failed to unmarshal RTP packet: %s", err)
continue
2020-10-05 08:11:30 +00:00
}
2020-10-05 09:08:22 +00:00
// Write RTP packet to all audio tracks
// Adapt payload and SSRC to match destination
2020-10-05 08:11:30 +00:00
for _, audioTrack := range audioTracks {
packet.Header.PayloadType = audioTrack.PayloadType()
packet.Header.SSRC = audioTrack.SSRC()
2020-10-05 08:11:30 +00:00
if writeErr := audioTrack.WriteRTP(packet); writeErr != nil {
2020-10-05 09:38:17 +00:00
log.Printf("Failed to write to audio track: %s", err)
continue
2020-10-05 08:11:30 +00:00
}
}
}
}()
go func() {
scanner := bufio.NewScanner(errOutput)
for scanner.Scan() {
log.Printf("[WEBRTC FFMPEG %s] %s", "demo", scanner.Text())
}
}()
break
case "sendData":
// FIXME send to stream packet.StreamName
2020-10-05 09:38:17 +00:00
if _, err := ffmpegInput.Write(packet.Data); err != nil {
log.Printf("Failed to write data to ffmpeg input: %s", err)
2020-10-05 08:11:30 +00:00
}
break
case "close":
log.Printf("WebRTC CloseConnection %s", packet.StreamName)
break
default:
log.Println("Unknown SRT packet type:", packet.PacketType)
break
}
if err != nil {
log.Printf("Error occured while receiving SRT packet of type %s: %s", packet.PacketType, err)
}
}
}