mirror of
https://github.com/mudler/LocalAI.git
synced 2025-01-28 07:03:54 +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
|
||
|
}
|