go-wav icon indicating copy to clipboard operation
go-wav copied to clipboard

A Go library to read/write WAVE(RIFF waveform Audio) Format

Results 4 go-wav issues
Sort by recently updated
recently updated
newest added

Hello, i'm getting audio input and I would like to save it to file but after adding wav header file. Then save it to .wav file instead of .pcm now.....

hope to get wav header data from `format` attr. so i can detect wheater a 44 or 46-byte header.

i need to read wav file , calclate `Signal-to-noise ratio` and `vocal amplitude` . my `ConvertToDecibel` code: ``` func ConvertToDecibel(arr int) float64 { ref := 1.0 if arr != 0...

Hi, I'm struggling to create a wave file, I tried this simple program, but it doesn't sound right! (pardon my comicity ) ``` file, err := os.OpenFile("./t.wav", os.O_RDWR|os.O_CREATE, 0666) if...