-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaudio.go
212 lines (179 loc) · 5.25 KB
/
audio.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
package main
import (
"bytes"
"context"
"fmt"
"io"
"io/ioutil"
"log"
"time"
portaudio "github.com/gordonklaus/portaudio"
"github.com/viert/go-lame"
)
const sampleRate = 44100
const bufferSize = 256
const maxRecordSeconds = 30
const minRecordSeconds = 1
const debug = false
func recordAudio(ctx context.Context, stopCh <-chan struct{}) ([]int16, error) {
ctx, cancel := context.WithTimeout(ctx, maxRecordSeconds*time.Second)
defer cancel()
err := portaudio.Initialize()
if err != nil {
return nil, fmt.Errorf("Error initializing PortAudio: %v", err)
}
defer portaudio.Terminate()
// TODO: allow user to specify input device, the default is failing on my computer
inputDevice, err := findDeviceByName("pipewire")
if err != nil {
return nil, fmt.Errorf("Error finding input device: %v", err)
}
var recordingBuffer []int16
stream, err := portaudio.OpenStream(portaudio.StreamParameters{
Input: portaudio.StreamDeviceParameters{
Device: inputDevice,
Channels: 1,
Latency: inputDevice.DefaultLowInputLatency,
},
SampleRate: sampleRate,
FramesPerBuffer: bufferSize,
}, func(in []int16) {
if debug {
log.Printf("Chunk length: %d\n", len(in))
log.Printf("Input chunk: %+v\n", in)
}
recordingBuffer = append(recordingBuffer, in...)
})
if err != nil {
return nil, fmt.Errorf("Error opening default stream: %v", err)
}
defer stream.Close()
startTime := time.Now()
if err := stream.Start(); err != nil {
return nil, fmt.Errorf("Error starting stream: %v", err)
}
defer stream.Stop()
log.Println("Recording, waiting for stop signal...")
select {
case <-stopCh:
stream.Stop()
log.Println("Recording finished.")
case <-ctx.Done():
stream.Stop()
return nil, fmt.Errorf("Recording cancelled")
}
if time.Since(startTime) < minRecordSeconds*time.Second {
return nil, fmt.Errorf("Aborting, recording too short: < %d seconds", minRecordSeconds)
}
return recordingBuffer, nil
}
// encode and write an audio recording to a MP3 file to a temporary file path
// and return the path
func writeRecordingToMP3(recordingBuffer []int16) (string, error) {
// Convert int16 buffer to byte buffer
byteBuffer := new(bytes.Buffer)
for _, sample := range recordingBuffer {
byteBuffer.WriteByte(byte(sample & 0xff))
byteBuffer.WriteByte(byte((sample >> 8) & 0xff))
}
// Write to temporary file
tempFile, err := ioutil.TempFile("", fmt.Sprintf("talkxtyper-%d-*.mp3", time.Now().Unix()))
if err != nil {
return "", fmt.Errorf("Error creating temporary file: %v", err)
}
defer tempFile.Close()
// Initialize LAME encoder with the output file handle
encoder := lame.NewEncoder(tempFile)
encoder.SetNumChannels(1)
encoder.SetInSamplerate(sampleRate)
defer encoder.Close()
// Encode to MP3
if _, err := io.Copy(encoder, byteBuffer); err != nil {
return "", fmt.Errorf("Error encoding MP3: %v", err)
}
return tempFile.Name(), nil
}
func playRecording(recordingBuffer []int16) error {
outputDevice, err := findDeviceByName("pipewire")
if err != nil {
return fmt.Errorf("Error finding output device: %v", err)
}
if err := playRecordingToDevice(recordingBuffer, outputDevice); err != nil {
return fmt.Errorf("Error during playback: %v", err)
}
return nil
}
func findDeviceByName(name string) (*portaudio.DeviceInfo, error) {
devices, err := portaudio.Devices()
if err != nil {
return nil, fmt.Errorf("Error listing devices: %v", err)
}
for _, device := range devices {
if device.Name == name {
return device, nil
}
}
return nil, fmt.Errorf("Output device '%s' not found", name)
}
// init portaudio and print out all deivices with their names and number of inputs and outpuits
func debugAudioDevices() {
err := portaudio.Initialize()
if err != nil {
log.Fatalf("Error initializing PortAudio: %v", err)
}
defer portaudio.Terminate()
devices, err := portaudio.Devices()
if err != nil {
log.Fatalf("Error listing devices: %v", err)
}
for _, device := range devices {
fmt.Printf("Name: %s, MaxInputChannels: %d, MaxOutputChannels: %d\n", device.Name, device.MaxInputChannels, device.MaxOutputChannels)
}
}
func playRecordingToDevice(recordingBuffer []int16, outputDevice *portaudio.DeviceInfo) error {
// play back the recording using portaudio, 44100 Hz, 16 bit signed mono audio
playbackStream, err := portaudio.OpenStream(portaudio.StreamParameters{
Output: portaudio.StreamDeviceParameters{
Device: outputDevice,
Channels: 1,
Latency: outputDevice.DefaultLowOutputLatency,
},
SampleRate: sampleRate,
FramesPerBuffer: bufferSize,
}, func(out []int16) {
for i := range out {
if len(recordingBuffer) > 0 {
out[i] = recordingBuffer[0]
recordingBuffer = recordingBuffer[1:]
} else {
out[i] = 0
}
}
})
if err != nil {
return fmt.Errorf("Error opening playback stream: %v", err)
}
defer playbackStream.Close()
if debug {
log.Printf("Playback stream: %+v\n", playbackStream)
}
if err := playbackStream.Start(); err != nil {
return fmt.Errorf("Error starting playback stream: %v", err)
}
defer playbackStream.Stop()
stop := make(chan struct{})
go func() {
fmt.Println("Playing (press 'Enter' to stop)...")
fmt.Scanln()
close(stop)
}()
for len(recordingBuffer) > 0 {
select {
case <-stop:
return nil
default:
// continue playback
}
}
return nil
}