2019-05-08 13:01:25 +03:00
|
|
|
/*
|
|
|
|
NAME
|
|
|
|
audio-input.go
|
|
|
|
|
|
|
|
AUTHOR
|
|
|
|
Trek Hopton <trek@ausocean.org>
|
|
|
|
|
|
|
|
LICENSE
|
|
|
|
audio-input.go is Copyright (C) 2019 the Australian Ocean Lab (AusOcean)
|
|
|
|
|
|
|
|
It is free software: you can redistribute it and/or modify them
|
|
|
|
under the terms of the GNU General Public License as published by the
|
|
|
|
Free Software Foundation, either version 3 of the License, or (at your
|
|
|
|
option) any later version.
|
|
|
|
|
|
|
|
It is distributed in the hope that it will be useful, but WITHOUT
|
|
|
|
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
|
|
for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License in gpl.txt.
|
|
|
|
If not, see [GNU licenses](http://www.gnu.org/licenses).
|
|
|
|
*/
|
|
|
|
|
2019-05-08 10:51:21 +03:00
|
|
|
package revid
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
"fmt"
|
|
|
|
"io"
|
|
|
|
"sync"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/yobert/alsa"
|
|
|
|
|
|
|
|
"bitbucket.org/ausocean/av/codec/pcm"
|
|
|
|
"bitbucket.org/ausocean/iot/pi/smartlogger"
|
|
|
|
"bitbucket.org/ausocean/utils/logger"
|
|
|
|
"bitbucket.org/ausocean/utils/ring"
|
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
logPath = "/var/log/netsender"
|
|
|
|
rbTimeout = 100 * time.Millisecond
|
|
|
|
rbNextTimeout = 100 * time.Millisecond
|
2019-05-22 08:26:58 +03:00
|
|
|
rbLen = 200
|
2019-05-08 10:51:21 +03:00
|
|
|
)
|
|
|
|
|
2019-05-20 18:15:54 +03:00
|
|
|
const (
|
|
|
|
running = iota
|
|
|
|
paused
|
|
|
|
stopped
|
|
|
|
)
|
|
|
|
|
2019-05-22 17:49:44 +03:00
|
|
|
// Rates contains the audio sample rates used by revid.
|
|
|
|
var Rates = [8]int{8000, 16000, 32000, 44100, 48000, 88200, 96000, 192000}
|
2019-05-21 06:09:10 +03:00
|
|
|
|
2019-05-08 10:51:21 +03:00
|
|
|
var log *logger.Logger
|
|
|
|
|
2019-05-22 17:49:44 +03:00
|
|
|
// AudioDevice holds everything we need to know about the audio input stream.
|
2019-05-15 09:27:49 +03:00
|
|
|
// Note: At 44100 Hz sample rate, 2 channels and 16-bit samples, a period of 5 seconds
|
|
|
|
// results in PCM data chunks of 882000 bytes. A longer period exceeds datastore's 1MB blob limit.
|
2019-05-22 17:49:44 +03:00
|
|
|
type AudioDevice struct {
|
2019-05-15 09:27:49 +03:00
|
|
|
mu sync.Mutex
|
|
|
|
source string // Name of audio source, or empty for the default source.
|
2019-05-20 18:15:54 +03:00
|
|
|
mode uint8 // Operating mode, either running, paused, or stopped.
|
2019-05-08 10:51:21 +03:00
|
|
|
|
2019-05-15 09:27:49 +03:00
|
|
|
dev *alsa.Device // Audio input device.
|
|
|
|
ab alsa.Buffer // ALSA's buffer.
|
|
|
|
rb *ring.Buffer // Our buffer.
|
|
|
|
chunkSize int // This is the number of bytes that will be stored at a time.
|
2019-05-08 10:51:21 +03:00
|
|
|
|
|
|
|
*AudioConfig
|
|
|
|
}
|
|
|
|
|
2019-05-22 17:49:44 +03:00
|
|
|
// AudioConfig provides parameters used by AudioDevice.
|
2019-05-08 10:51:21 +03:00
|
|
|
type AudioConfig struct {
|
|
|
|
SampleRate int
|
|
|
|
Channels int
|
|
|
|
BitDepth int
|
2019-05-22 08:26:58 +03:00
|
|
|
RecPeriod float64
|
2019-05-08 10:51:21 +03:00
|
|
|
Codec uint8
|
|
|
|
}
|
|
|
|
|
2019-05-22 17:49:44 +03:00
|
|
|
// NewAudioDevice initializes and returns an AudioDevice struct which can be started, read from, and stopped.
|
|
|
|
func NewAudioDevice(cfg *AudioConfig) *AudioDevice {
|
2019-05-15 09:27:49 +03:00
|
|
|
// Initialize logger.
|
2019-05-08 10:51:21 +03:00
|
|
|
logLevel := int(logger.Debug)
|
|
|
|
validLogLevel := true
|
|
|
|
if logLevel < int(logger.Debug) || logLevel > int(logger.Fatal) {
|
|
|
|
logLevel = int(logger.Info)
|
|
|
|
validLogLevel = false
|
|
|
|
}
|
|
|
|
logSender := smartlogger.New(logPath)
|
|
|
|
log = logger.New(int8(logLevel), &logSender.LogRoller)
|
|
|
|
log.Log(logger.Info, "log-netsender: Logger Initialized")
|
|
|
|
if !validLogLevel {
|
|
|
|
log.Log(logger.Error, "Invalid log level was defaulted to Info")
|
|
|
|
}
|
|
|
|
|
2019-05-22 17:49:44 +03:00
|
|
|
a := &AudioDevice{}
|
2019-05-08 10:51:21 +03:00
|
|
|
a.AudioConfig = cfg
|
|
|
|
|
|
|
|
// Open the requested audio device.
|
|
|
|
err := a.open()
|
|
|
|
if err != nil {
|
|
|
|
log.Log(logger.Fatal, "alsa.open failed", "error", err.Error())
|
|
|
|
}
|
|
|
|
|
2019-05-15 09:27:49 +03:00
|
|
|
// Setup ring buffer to capture audio in periods of a.RecPeriod seconds, and buffer rbDuration seconds in total.
|
2019-05-22 17:49:44 +03:00
|
|
|
a.ab = a.dev.NewBufferDuration(time.Duration(a.RecPeriod * float64(time.Second)))
|
|
|
|
cs := (float64((len(a.ab.Data)/a.dev.BufferFormat().Channels)*a.Channels) / float64(a.dev.BufferFormat().Rate)) * float64(a.SampleRate)
|
|
|
|
if cs < 1 {
|
|
|
|
log.Log(logger.Fatal, "given AudioConfig parameters are too small")
|
|
|
|
}
|
|
|
|
a.chunkSize = int(cs)
|
2019-05-08 10:51:21 +03:00
|
|
|
a.rb = ring.NewBuffer(rbLen, a.chunkSize, rbTimeout)
|
2019-05-22 17:49:44 +03:00
|
|
|
if a.rb == nil {
|
|
|
|
fmt.Println("NEW:", "rb: NIL", a.mode)
|
|
|
|
fmt.Println(rbLen, a.chunkSize, rbTimeout)
|
|
|
|
fmt.Println(len(a.ab.Data), a.dev.BufferFormat().Channels, a.Channels, a.dev.BufferFormat().Rate, a.SampleRate)
|
|
|
|
} else {
|
|
|
|
fmt.Println("NEW:", "rb: VALID", a.mode)
|
|
|
|
}
|
2019-05-20 18:15:54 +03:00
|
|
|
a.mode = paused
|
2019-05-08 10:51:21 +03:00
|
|
|
|
|
|
|
return a
|
|
|
|
}
|
|
|
|
|
2019-05-15 09:27:49 +03:00
|
|
|
// Start will start recording audio and writing to the output.
|
2019-05-22 17:49:44 +03:00
|
|
|
func (a *AudioDevice) Start() {
|
|
|
|
fmt.Println("start lock")
|
2019-05-15 09:27:49 +03:00
|
|
|
a.mu.Lock()
|
2019-05-22 08:26:58 +03:00
|
|
|
switch a.mode {
|
2019-05-20 18:15:54 +03:00
|
|
|
case paused:
|
|
|
|
// Start Recording
|
2019-05-15 09:27:49 +03:00
|
|
|
go a.input()
|
2019-05-22 08:26:58 +03:00
|
|
|
a.mode = running
|
2019-05-20 18:15:54 +03:00
|
|
|
case stopped:
|
|
|
|
// Open the audio device and start recording.
|
|
|
|
err := a.open()
|
|
|
|
if err != nil {
|
|
|
|
log.Log(logger.Fatal, "alsa.open failed", "error", err.Error())
|
|
|
|
}
|
|
|
|
go a.input()
|
2019-05-22 08:26:58 +03:00
|
|
|
a.mode = running
|
2019-05-20 18:15:54 +03:00
|
|
|
case running:
|
|
|
|
return
|
2019-05-15 09:27:49 +03:00
|
|
|
}
|
2019-05-20 18:15:54 +03:00
|
|
|
a.mu.Unlock()
|
2019-05-22 17:49:44 +03:00
|
|
|
fmt.Println("start unlock")
|
2019-05-15 09:27:49 +03:00
|
|
|
}
|
|
|
|
|
2019-05-21 06:09:10 +03:00
|
|
|
// Stop will stop recording audio and close the device
|
2019-05-22 17:49:44 +03:00
|
|
|
func (a *AudioDevice) Stop() {
|
|
|
|
fmt.Println("stop lock")
|
2019-05-20 18:15:54 +03:00
|
|
|
a.mu.Lock()
|
2019-05-15 09:27:49 +03:00
|
|
|
if a.dev != nil {
|
|
|
|
log.Log(logger.Debug, "Closing", "source", a.source)
|
|
|
|
a.dev.Close()
|
|
|
|
a.dev = nil
|
|
|
|
}
|
2019-05-22 08:26:58 +03:00
|
|
|
a.mode = stopped
|
|
|
|
a.mu.Unlock()
|
2019-05-22 17:49:44 +03:00
|
|
|
fmt.Println("stop unlock")
|
2019-05-15 09:27:49 +03:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2019-05-22 17:49:44 +03:00
|
|
|
// ChunkSize returns the AudioDevice's chunkSize, ie. the number of bytes of audio written to output at a time.
|
|
|
|
func (a *AudioDevice) ChunkSize() int {
|
2019-05-08 10:51:21 +03:00
|
|
|
return a.chunkSize
|
|
|
|
}
|
|
|
|
|
|
|
|
// open or re-open the recording device with the given name and prepare it to record.
|
|
|
|
// If name is empty, the first recording device is used.
|
2019-05-22 17:49:44 +03:00
|
|
|
func (a *AudioDevice) open() error {
|
2019-05-08 10:51:21 +03:00
|
|
|
if a.dev != nil {
|
|
|
|
log.Log(logger.Debug, "Closing", "source", a.source)
|
|
|
|
a.dev.Close()
|
|
|
|
a.dev = nil
|
|
|
|
}
|
|
|
|
log.Log(logger.Debug, "Opening", "source", a.source)
|
|
|
|
|
|
|
|
cards, err := alsa.OpenCards()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer alsa.CloseCards(cards)
|
|
|
|
|
|
|
|
for _, card := range cards {
|
|
|
|
devices, err := card.Devices()
|
|
|
|
if err != nil {
|
2019-05-21 06:09:10 +03:00
|
|
|
continue
|
2019-05-08 10:51:21 +03:00
|
|
|
}
|
|
|
|
for _, dev := range devices {
|
|
|
|
if dev.Type != alsa.PCM || !dev.Record {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
if dev.Title == a.source || a.source == "" {
|
|
|
|
a.dev = dev
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if a.dev == nil {
|
|
|
|
return errors.New("No audio source found")
|
|
|
|
}
|
|
|
|
log.Log(logger.Debug, "Found audio source", "source", a.dev.Title)
|
|
|
|
|
|
|
|
// ToDo: time out if Open takes too long.
|
|
|
|
err = a.dev.Open()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
log.Log(logger.Debug, "Opened audio source")
|
|
|
|
|
|
|
|
// 2 channels is what most devices need to record in. If mono is requested,
|
|
|
|
// the recording will be converted in formatBuffer().
|
|
|
|
_, err = a.dev.NegotiateChannels(2)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Try to negotiate a rate to record in that is divisible by the wanted rate
|
|
|
|
// so that it can be easily downsampled to the wanted rate.
|
|
|
|
// Note: if a card thinks it can record at a rate but can't actually, this can cause a failure. Eg.
|
|
|
|
// the audioinjector is supposed to record at 8000Hz and 16000Hz but it can't due to a firmware issue,
|
2019-05-22 17:49:44 +03:00
|
|
|
// to fix this 8000 and 16000 must be removed from the Rates slice.
|
2019-05-08 10:51:21 +03:00
|
|
|
foundRate := false
|
2019-05-22 17:49:44 +03:00
|
|
|
for i := 0; i < len(Rates) && !foundRate; i++ {
|
|
|
|
if Rates[i] < a.SampleRate {
|
2019-05-08 10:51:21 +03:00
|
|
|
continue
|
|
|
|
}
|
2019-05-22 17:49:44 +03:00
|
|
|
if Rates[i]%a.SampleRate == 0 {
|
|
|
|
_, err = a.dev.NegotiateRate(Rates[i])
|
2019-05-08 10:51:21 +03:00
|
|
|
if err == nil {
|
|
|
|
foundRate = true
|
2019-05-22 17:49:44 +03:00
|
|
|
log.Log(logger.Debug, "Sample rate set", "rate", Rates[i])
|
2019-05-08 10:51:21 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// If no easily divisible rate is found, then use the default rate.
|
|
|
|
if !foundRate {
|
|
|
|
log.Log(logger.Warning, "Unable to sample at requested rate, default used.", "rateRequested", a.SampleRate)
|
|
|
|
_, err = a.dev.NegotiateRate(defaultSampleRate)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
log.Log(logger.Debug, "Sample rate set", "rate", defaultSampleRate)
|
|
|
|
}
|
|
|
|
|
2019-05-09 05:41:02 +03:00
|
|
|
var aFmt alsa.FormatType
|
2019-05-08 10:51:21 +03:00
|
|
|
switch a.BitDepth {
|
|
|
|
case 16:
|
2019-05-09 05:41:02 +03:00
|
|
|
aFmt = alsa.S16_LE
|
2019-05-08 10:51:21 +03:00
|
|
|
case 32:
|
2019-05-09 05:41:02 +03:00
|
|
|
aFmt = alsa.S32_LE
|
2019-05-08 10:51:21 +03:00
|
|
|
default:
|
2019-05-15 09:27:49 +03:00
|
|
|
return fmt.Errorf("unsupported sample bits %v", a.BitDepth)
|
2019-05-08 10:51:21 +03:00
|
|
|
}
|
2019-05-09 05:41:02 +03:00
|
|
|
_, err = a.dev.NegotiateFormat(aFmt)
|
2019-05-08 10:51:21 +03:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Either 8192 or 16384 bytes is a reasonable ALSA buffer size.
|
|
|
|
_, err = a.dev.NegotiateBufferSize(8192, 16384)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if err = a.dev.Prepare(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
log.Log(logger.Debug, "Successfully negotiated ALSA params")
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// input continously records audio and writes it to the ringbuffer.
|
|
|
|
// Re-opens the device and tries again if ASLA returns an error.
|
2019-05-22 17:49:44 +03:00
|
|
|
func (a *AudioDevice) input() {
|
2019-05-08 10:51:21 +03:00
|
|
|
for {
|
|
|
|
a.mu.Lock()
|
2019-05-22 17:49:44 +03:00
|
|
|
fmt.Println("input lock")
|
|
|
|
if a.dev == nil {
|
|
|
|
fmt.Println("INPUT:", "dev: NIL", a.mode)
|
|
|
|
} else {
|
|
|
|
fmt.Println("INPUT:", "dev: VALID", a.mode)
|
|
|
|
}
|
|
|
|
if a.rb == nil {
|
|
|
|
fmt.Println("INPUT:", "rb: NIL", a.mode)
|
|
|
|
} else {
|
|
|
|
fmt.Println("INPUT:", "rb: VALID", a.mode)
|
|
|
|
}
|
2019-05-22 08:26:58 +03:00
|
|
|
switch a.mode {
|
2019-05-20 18:15:54 +03:00
|
|
|
case paused:
|
2019-05-22 08:26:58 +03:00
|
|
|
a.mu.Unlock()
|
2019-05-22 17:49:44 +03:00
|
|
|
fmt.Println("input unlock")
|
2019-05-08 10:51:21 +03:00
|
|
|
time.Sleep(time.Duration(a.RecPeriod) * time.Second)
|
|
|
|
continue
|
2019-05-20 18:15:54 +03:00
|
|
|
case stopped:
|
2019-05-22 08:26:58 +03:00
|
|
|
a.mu.Unlock()
|
2019-05-22 17:49:44 +03:00
|
|
|
fmt.Println("input unlock")
|
2019-05-22 08:26:58 +03:00
|
|
|
return
|
2019-05-08 10:51:21 +03:00
|
|
|
}
|
|
|
|
log.Log(logger.Debug, "Recording audio for period", "seconds", a.RecPeriod)
|
2019-05-22 17:49:44 +03:00
|
|
|
fmt.Println("LEN:", len(a.ab.Data))
|
2019-05-08 10:51:21 +03:00
|
|
|
err := a.dev.Read(a.ab.Data)
|
2019-05-22 17:49:44 +03:00
|
|
|
fmt.Println("input read")
|
2019-05-08 10:51:21 +03:00
|
|
|
if err != nil {
|
|
|
|
log.Log(logger.Debug, "Device.Read failed", "error", err.Error())
|
|
|
|
err = a.open() // re-open
|
|
|
|
if err != nil {
|
2019-05-22 17:49:44 +03:00
|
|
|
a.mu.Unlock()
|
|
|
|
fmt.Println("input unlock")
|
2019-05-08 10:51:21 +03:00
|
|
|
log.Log(logger.Fatal, "alsa.open failed", "error", err.Error())
|
|
|
|
}
|
|
|
|
a.mu.Unlock()
|
2019-05-22 17:49:44 +03:00
|
|
|
fmt.Println("input unlock")
|
2019-05-08 10:51:21 +03:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
toWrite := a.formatBuffer()
|
2019-05-22 17:49:44 +03:00
|
|
|
fmt.Println("input point")
|
2019-05-08 10:51:21 +03:00
|
|
|
|
|
|
|
log.Log(logger.Debug, "Audio format conversion has been performed where needed")
|
|
|
|
|
|
|
|
var n int
|
|
|
|
n, err = a.rb.Write(toWrite.Data)
|
2019-05-22 17:49:44 +03:00
|
|
|
fmt.Println("input write")
|
2019-05-08 10:51:21 +03:00
|
|
|
switch err {
|
|
|
|
case nil:
|
|
|
|
log.Log(logger.Debug, "Wrote audio to ringbuffer", "length", n)
|
|
|
|
case ring.ErrDropped:
|
|
|
|
log.Log(logger.Warning, "Dropped audio")
|
|
|
|
default:
|
2019-05-22 17:49:44 +03:00
|
|
|
a.mu.Unlock()
|
|
|
|
fmt.Println("input unlock")
|
2019-05-08 10:51:21 +03:00
|
|
|
log.Log(logger.Error, "Unexpected ringbuffer error", "error", err.Error())
|
|
|
|
return
|
|
|
|
}
|
2019-05-22 17:49:44 +03:00
|
|
|
a.mu.Unlock()
|
|
|
|
fmt.Println("input unlock")
|
2019-05-08 10:51:21 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-08 13:26:02 +03:00
|
|
|
// Read reads a full PCM chunk from the ringbuffer, returning the number of bytes read upon success.
|
2019-05-08 10:51:21 +03:00
|
|
|
// Any errors returned are unexpected and should be considered fatal.
|
2019-05-22 17:49:44 +03:00
|
|
|
func (a *AudioDevice) Read(p []byte) (n int, err error) {
|
|
|
|
fmt.Println("read lock")
|
2019-05-22 08:26:58 +03:00
|
|
|
a.mu.Lock()
|
|
|
|
switch a.mode {
|
|
|
|
case paused:
|
|
|
|
return 0, nil
|
|
|
|
case stopped:
|
|
|
|
return 0, nil
|
|
|
|
}
|
2019-05-22 17:49:44 +03:00
|
|
|
if a.rb == nil {
|
|
|
|
fmt.Println("READ:", "NIL", a.mode)
|
|
|
|
} else {
|
|
|
|
fmt.Println("READ:", "VALID", a.mode)
|
|
|
|
}
|
2019-05-08 10:51:21 +03:00
|
|
|
chunk, err := a.rb.Next(rbNextTimeout)
|
|
|
|
switch err {
|
|
|
|
case nil:
|
|
|
|
// Do nothing.
|
|
|
|
case ring.ErrTimeout:
|
|
|
|
return 0, nil
|
|
|
|
case io.EOF:
|
|
|
|
log.Log(logger.Error, "Unexpected EOF from ring.Next")
|
|
|
|
return 0, io.ErrUnexpectedEOF
|
|
|
|
default:
|
|
|
|
log.Log(logger.Error, "Unexpected error from ring.Next", "error", err.Error())
|
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
n, err = io.ReadFull(a.rb, p[:chunk.Len()])
|
|
|
|
if err != nil {
|
|
|
|
log.Log(logger.Error, "Unexpected error from ring.Read", "error", err.Error())
|
|
|
|
return n, err
|
|
|
|
}
|
|
|
|
log.Log(logger.Debug, "Read audio from ringbuffer", "length", n)
|
2019-05-22 08:26:58 +03:00
|
|
|
a.mu.Unlock()
|
2019-05-22 17:49:44 +03:00
|
|
|
fmt.Println("read unlock")
|
2019-05-08 10:51:21 +03:00
|
|
|
return n, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// formatBuffer returns an ALSA buffer that has the recording data from the ac's original ALSA buffer but stored
|
|
|
|
// in the desired format specified by the ac's parameters.
|
2019-05-22 17:49:44 +03:00
|
|
|
func (a *AudioDevice) formatBuffer() alsa.Buffer {
|
2019-05-08 10:51:21 +03:00
|
|
|
var err error
|
|
|
|
wantChannels := a.Channels
|
|
|
|
wantRate := a.SampleRate
|
|
|
|
|
|
|
|
// If nothing needs to be changed, return the original.
|
|
|
|
if a.ab.Format.Channels == wantChannels && a.ab.Format.Rate == wantRate {
|
|
|
|
return a.ab
|
|
|
|
}
|
|
|
|
|
|
|
|
formatted := alsa.Buffer{Format: a.ab.Format}
|
|
|
|
bufCopied := false
|
|
|
|
if a.ab.Format.Channels != wantChannels {
|
|
|
|
|
|
|
|
// Convert channels.
|
|
|
|
if a.ab.Format.Channels == 2 && wantChannels == 1 {
|
|
|
|
if formatted.Data, err = pcm.StereoToMono(a.ab); err != nil {
|
|
|
|
log.Log(logger.Warning, "Channel conversion failed, audio has remained stereo", "error", err.Error())
|
|
|
|
} else {
|
|
|
|
formatted.Format.Channels = 1
|
|
|
|
}
|
|
|
|
bufCopied = true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if a.ab.Format.Rate != wantRate {
|
|
|
|
|
|
|
|
// Convert rate.
|
|
|
|
if bufCopied {
|
|
|
|
formatted.Data, err = pcm.Resample(formatted, wantRate)
|
|
|
|
} else {
|
|
|
|
formatted.Data, err = pcm.Resample(a.ab, wantRate)
|
|
|
|
}
|
|
|
|
if err != nil {
|
|
|
|
log.Log(logger.Warning, "Rate conversion failed, audio has remained original rate", "error", err.Error())
|
|
|
|
} else {
|
|
|
|
formatted.Format.Rate = wantRate
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return formatted
|
|
|
|
}
|