mirror of
https://github.com/huggingface/lerobot.git
synced 2026-07-23 09:46:00 +00:00
fix(audio load file): adding missing dimension when loading mono audio data
This commit is contained in:
@@ -417,6 +417,11 @@ def load_image_as_numpy(
|
|||||||
|
|
||||||
def load_audio_from_path(fpath: str | Path) -> np.ndarray:
|
def load_audio_from_path(fpath: str | Path) -> np.ndarray:
|
||||||
audio_data, _ = read(fpath, dtype="float32")
|
audio_data, _ = read(fpath, dtype="float32")
|
||||||
|
|
||||||
|
# Fill missing channel dimension when loading mono audio data
|
||||||
|
if audio_data.ndim == 1:
|
||||||
|
audio_data = np.expand_dims(audio_data, axis=1)
|
||||||
|
|
||||||
return audio_data
|
return audio_data
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user