Don't throw on mono audio any more since everything should work?
This commit is contained in:
parent
900a01305c
commit
be5f9627da
|
@ -579,17 +579,18 @@ def get_dtype(audio_format):
|
||||||
|
|
||||||
|
|
||||||
def pcm_to_np(pcm_data, audio_format=DEFAULT_FORMAT):
|
def pcm_to_np(pcm_data, audio_format=DEFAULT_FORMAT):
|
||||||
if audio_format.channels != 1:
|
# Handles both mono and stero audio
|
||||||
raise ValueError('Mono-channel audio required')
|
|
||||||
dtype = get_dtype(audio_format)
|
dtype = get_dtype(audio_format)
|
||||||
samples = np.frombuffer(pcm_data, dtype=dtype)
|
samples = np.frombuffer(pcm_data, dtype=dtype)
|
||||||
samples = samples.astype(np.float32) / np.iinfo(dtype).max
|
samples = samples.astype(np.float32) / np.iinfo(dtype).max
|
||||||
|
|
||||||
|
if audio_format.channels == 1:
|
||||||
return np.expand_dims(samples, axis=1)
|
return np.expand_dims(samples, axis=1)
|
||||||
|
else:
|
||||||
|
return samples
|
||||||
|
|
||||||
|
|
||||||
def np_to_pcm(np_data, audio_format=DEFAULT_FORMAT):
|
def np_to_pcm(np_data, audio_format=DEFAULT_FORMAT):
|
||||||
if audio_format.channels != 1:
|
|
||||||
raise ValueError('Mono-channel audio required')
|
|
||||||
dtype = get_dtype(audio_format)
|
dtype = get_dtype(audio_format)
|
||||||
np_data = np_data.squeeze()
|
np_data = np_data.squeeze()
|
||||||
np_data = np_data * np.iinfo(dtype).max
|
np_data = np_data * np.iinfo(dtype).max
|
||||||
|
|
Loading…
Reference in New Issue