File size: 267 Bytes
c0a983b
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
from io import BytesIO
import soundfile
import numpy as np

def audio_array_to_buffer(audio_array: np.array, sample_rate: int) -> BytesIO:
    buffer = BytesIO()
    soundfile.write(buffer, audio_array, sample_rate, format="wav") 
    buffer.seek(0)
    return buffer