mirror of
https://github.com/mudler/LocalAI.git
synced 2025-03-16 09:05:22 +00:00
13 lines
192 B
Go
13 lines
192 B
Go
package sound
|
|
|
|
import (
|
|
"encoding/binary"
|
|
"math"
|
|
)
|
|
|
|
func BytesFloat32(bytes []byte) float32 {
|
|
bits := binary.LittleEndian.Uint32(bytes)
|
|
float := math.Float32frombits(bits)
|
|
return float
|
|
}
|