LocalAI/pkg/sound/float32.go

13 lines
192 B
Go
Raw Normal View History

package sound
import (
"encoding/binary"
"math"
)
func BytesFloat32(bytes []byte) float32 {
bits := binary.LittleEndian.Uint32(bytes)
float := math.Float32frombits(bits)
return float
}