Skip to content

Commit

Permalink
reduce length of float32 samples in vad test
Browse files Browse the repository at this point in the history
Signed-off-by: Dave Lee <[email protected]>
  • Loading branch information
dave-gray101 committed Nov 26, 2024
1 parent a0aac96 commit 607db19
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions tests/e2e-aio/e2e_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -243,6 +243,7 @@ var _ = Describe("E2E test", func() {
buf, err := d.FullPCMBuffer()
Expect(err).ToNot((HaveOccurred()))
fBuf := buf.AsFloat32Buffer().Data
fBuf = fBuf[:len(fBuf)/8] // Whole file is too long, attempting reduced length
req := schema.VADRequest{
BasicModelRequest: schema.BasicModelRequest{
Model: modelName,
Expand Down

0 comments on commit 607db19

Please sign in to comment.