コード例 #1
0
 def read_audio_function(source):
     return audio_utils.auread(source, channel_first=channel_first)
コード例 #2
0
def load_audio_pydub(path, shape=None, normalize=False):
    if shape:
        return auresize(auread(path), shape)
    return auread(path)
コード例 #3
0
ファイル: test_audio_utils.py プロジェクト: aswifi/nnabla
 def read_audio_function():
     return audio_utils.auread(audio_file_path, channel_first=channel_first)