forked from go-audio/wav
-
Notifications
You must be signed in to change notification settings - Fork 0
/
wav.go
47 lines (38 loc) · 979 Bytes
/
wav.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
/*
Package wav is a package allowing developers to decode and encode audio PCM
data using the Waveform Audio File Format https://en.wikipedia.org/wiki/WAV
*/
package wav
import (
"errors"
"math"
"time"
)
var (
// ErrPCMChunkNotFound indicates a bad audio file without data
ErrPCMChunkNotFound = errors.New("PCM Chunk not found in audio file")
)
func nullTermStr(b []byte) string {
return string(b[:clen(b)])
}
func clen(n []byte) int {
for i := 0; i < len(n); i++ {
if n[i] == 0 {
return i
}
}
return len(n)
}
func bytesNumFromDuration(dur time.Duration, sampleRate, bitDepth int) int {
k := bitDepth / 8
return samplesNumFromDuration(dur, sampleRate) * k
}
func samplesNumFromDuration(dur time.Duration, sampleRate int) int {
return int(math.Floor(float64(dur / sampleDuration(sampleRate))))
}
func sampleDuration(sampleRate int) time.Duration {
if sampleRate == 0 {
return 0
}
return time.Second / time.Duration(math.Abs(float64(sampleRate)))
}