dndmusicbot/speaker/discord.go

143 lines
2.2 KiB
Go
Raw Normal View History

2022-11-18 21:18:12 +00:00
package discordspeaker
import (
2022-12-05 17:24:06 +00:00
"context"
2022-11-18 21:18:12 +00:00
"log"
"sync"
"time"
2022-11-18 21:18:12 +00:00
2022-12-05 17:24:06 +00:00
"github.com/diamondburned/arikawa/v3/voice"
"github.com/diamondburned/arikawa/v3/voice/voicegateway"
2022-11-18 21:18:12 +00:00
"github.com/faiface/beep"
"github.com/pkg/errors"
"gopkg.in/hraban/opus.v2"
2022-11-18 21:18:12 +00:00
)
var (
2022-12-05 17:24:06 +00:00
mu sync.Mutex
mixer beep.Mixer
samples [][2]float64
done chan struct{}
encoder *opus.Encoder
//voice *discordgo.VoiceConnection
2022-11-18 21:18:12 +00:00
frameSize int = 960
channels int = 2
sampleRate int = 48000
maxBytes int = (frameSize * 2) * 2
buf []byte
2022-12-05 17:24:06 +00:00
session *voice.Session
spk bool
2022-11-18 21:18:12 +00:00
)
2022-12-05 17:24:06 +00:00
func Init(dgv *voice.Session) error {
2022-11-18 21:18:12 +00:00
var err error
mu.Lock()
defer mu.Unlock()
Close()
mixer = beep.Mixer{}
2022-11-18 21:18:12 +00:00
buf = make([]byte, maxBytes)
samples = make([][2]float64, frameSize)
2022-12-05 17:24:06 +00:00
session = dgv
2022-11-18 21:18:12 +00:00
encoder, err = opus.NewEncoder(sampleRate, channels, opus.AppVoIP)
encoder.SetBitrateToMax()
2022-11-18 21:18:12 +00:00
if err != nil {
return errors.Wrap(err, "failed to initialize speaker")
}
go func() {
for {
select {
default:
update()
case <-done:
return
}
}
}()
return nil
}
func Close() {
}
func Lock() {
mu.Lock()
}
// Unlock unlocks the speaker. Call after modifying any currently playing Streamer.
func Unlock() {
mu.Unlock()
}
func Play(s ...beep.Streamer) {
mu.Lock()
mixer.Add(s...)
mu.Unlock()
}
func Clear() {
mu.Lock()
mixer.Clear()
mu.Unlock()
}
func update() {
mu.Lock()
mixer.Stream(samples)
mu.Unlock()
var f32 []float32
2022-11-18 21:18:12 +00:00
for _, sample := range samples {
for _, val := range sample {
f32 = append(f32, float32(val))
2022-11-18 21:18:12 +00:00
}
2022-11-18 21:18:12 +00:00
}
if Silence(f32) {
2022-12-05 17:24:06 +00:00
if spk {
log.Println("Notspeaking")
session.Speaking(context.Background(), voicegateway.NotSpeaking)
spk = false
}
time.Sleep(100 * time.Millisecond)
return
}
2022-12-05 17:24:06 +00:00
if !spk {
log.Println("Speaking")
session.Speaking(context.Background(), voicegateway.Microphone)
spk = true
}
n, err := encoder.EncodeFloat32(f32, buf)
2022-11-18 21:18:12 +00:00
if err != nil {
log.Println(err)
time.Sleep(100 * time.Millisecond)
2022-11-18 21:18:12 +00:00
return
}
2022-12-05 17:24:06 +00:00
_, err = session.Write(buf[:n])
if err != nil {
log.Println(err)
time.Sleep(100 * time.Millisecond)
2022-11-18 21:18:12 +00:00
return
}
}
func Silence(in []float32) bool {
for _, v := range in {
if v != 0 {
return false
}
}
return true
}