Make sure the mpd fifo doesnt block and don't send silence over the udp connection.
parent
7f288e541d
commit
13cfa0afb6
29
mpd.go
29
mpd.go
|
@ -3,11 +3,11 @@ package main
|
||||||
import (
|
import (
|
||||||
"bytes"
|
"bytes"
|
||||||
"context"
|
"context"
|
||||||
"io"
|
|
||||||
"log"
|
"log"
|
||||||
"os"
|
"os"
|
||||||
"os/exec"
|
"os/exec"
|
||||||
"strconv"
|
"strconv"
|
||||||
|
"syscall"
|
||||||
"text/template"
|
"text/template"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
|
@ -17,7 +17,7 @@ import (
|
||||||
)
|
)
|
||||||
|
|
||||||
type MPD struct {
|
type MPD struct {
|
||||||
file *os.File
|
file int
|
||||||
f beep.Format
|
f beep.Format
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -121,8 +121,9 @@ func init() {
|
||||||
|
|
||||||
func NewMPD() (*MPD, error) {
|
func NewMPD() (*MPD, error) {
|
||||||
out := new(MPD)
|
out := new(MPD)
|
||||||
|
f, err := syscall.Open(config.GetString("mpd.fifo"), syscall.O_CREAT|syscall.O_RDONLY|syscall.O_CLOEXEC|syscall.O_NONBLOCK, 0644)
|
||||||
f, err := os.Open(config.GetString("mpd.fifo"))
|
log.Println(f, err)
|
||||||
|
//f, err := os.Open(config.GetString("mpd.fifo"))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
@ -145,29 +146,15 @@ func (m *MPD) Err() error {
|
||||||
func (m *MPD) Stream(samples [][2]float64) (n int, ok bool) {
|
func (m *MPD) Stream(samples [][2]float64) (n int, ok bool) {
|
||||||
tmp := make([]byte, m.f.NumChannels+2)
|
tmp := make([]byte, m.f.NumChannels+2)
|
||||||
|
|
||||||
status, err := app.mpd.Status()
|
|
||||||
if err != nil {
|
|
||||||
return 0, false
|
|
||||||
}
|
|
||||||
|
|
||||||
for i := range samples {
|
for i := range samples {
|
||||||
if status["state"] != "play" {
|
dn, err := syscall.Read(m.file, tmp)
|
||||||
samples[i] = [2]float64{}
|
|
||||||
ok = true
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
dn, err := m.file.Read(tmp)
|
|
||||||
if dn == len(tmp) {
|
if dn == len(tmp) {
|
||||||
samples[i], _ = m.f.DecodeSigned(tmp)
|
samples[i], _ = m.f.DecodeSigned(tmp)
|
||||||
ok = true
|
ok = true
|
||||||
}
|
}
|
||||||
if err == io.EOF {
|
|
||||||
ok = false
|
|
||||||
break
|
|
||||||
}
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Println(err)
|
samples[i] = [2]float64{}
|
||||||
ok = false
|
ok = true
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -5,6 +5,7 @@ import (
|
||||||
"encoding/binary"
|
"encoding/binary"
|
||||||
"log"
|
"log"
|
||||||
"sync"
|
"sync"
|
||||||
|
"time"
|
||||||
|
|
||||||
"github.com/bwmarrin/discordgo"
|
"github.com/bwmarrin/discordgo"
|
||||||
"github.com/faiface/beep"
|
"github.com/faiface/beep"
|
||||||
|
@ -12,8 +13,6 @@ import (
|
||||||
"layeh.com/gopus"
|
"layeh.com/gopus"
|
||||||
)
|
)
|
||||||
|
|
||||||
const bufferSize = 1000
|
|
||||||
|
|
||||||
var (
|
var (
|
||||||
mu sync.Mutex
|
mu sync.Mutex
|
||||||
mixer beep.Mixer
|
mixer beep.Mixer
|
||||||
|
@ -90,14 +89,6 @@ func Clear() {
|
||||||
mu.Unlock()
|
mu.Unlock()
|
||||||
}
|
}
|
||||||
|
|
||||||
func Pause(p bool) {
|
|
||||||
pause = p
|
|
||||||
}
|
|
||||||
|
|
||||||
func IsPaused() bool {
|
|
||||||
return pause
|
|
||||||
}
|
|
||||||
|
|
||||||
func update() {
|
func update() {
|
||||||
mu.Lock()
|
mu.Lock()
|
||||||
mixer.Stream(samples)
|
mixer.Stream(samples)
|
||||||
|
@ -120,7 +111,13 @@ func update() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if Silence(buf) {
|
||||||
|
time.Sleep(100 * time.Millisecond)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
binary.Read(bytes.NewReader(buf), binary.LittleEndian, &pcm)
|
binary.Read(bytes.NewReader(buf), binary.LittleEndian, &pcm)
|
||||||
|
|
||||||
opus, err := encoder.Encode(pcm, frameSize, maxBytes)
|
opus, err := encoder.Encode(pcm, frameSize, maxBytes)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Println(err)
|
log.Println(err)
|
||||||
|
@ -130,5 +127,16 @@ func update() {
|
||||||
if !voice.Ready || voice.OpusSend == nil {
|
if !voice.Ready || voice.OpusSend == nil {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
voice.OpusSend <- opus
|
voice.OpusSend <- opus
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func Silence(in []byte) bool {
|
||||||
|
for _, v := range in {
|
||||||
|
if v != 0 {
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue