Last active
April 12, 2023 02:36
-
-
Save weimeng23/6de255e7fde924700dfa98bc91ce25fb to your computer and use it in GitHub Desktop.
read raw pcm & wav in several method
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
# -*- coding: utf-8 -*- | |
# File : read_wav_pcm.py | |
# Author : Meng Wei <[email protected]> | |
# Date : 23.03.2023 | |
# Last Modified Date: 23.03.2023 | |
# Last Modified By : Meng Wei <[email protected]> | |
import librosa | |
import numpy as np | |
import soundfile as sf | |
import wave | |
print('------------read wav test------------') | |
wav_path = './1550500309979161_37470_38160.tmp.wav' | |
print('librosa read wav') | |
waveform, sr = librosa.load(wav_path, sr=16000) | |
data1 = waveform | |
print(waveform, sr, waveform.shape) | |
print('wave read wav') | |
f = wave.open(wav_path) | |
params = f.getparams() | |
print(params) | |
nchannels, samplewidth, framerate, nframes = params[0:4] | |
bytes_data = f.readframes(nframes) | |
# print(bytes_data) | |
data2 = np_data = np.frombuffer(bytes_data, dtype=np.int16)/32768.0 | |
print(np_data, np_data.shape) | |
print('soundfile read wav') | |
f = sf.SoundFile(wav_path) | |
data3 = f.read(dtype=np.float32) | |
print(data3, data3.shape) | |
print('------------read pcm test------------') | |
pcm_path = './output.pcm' | |
f = open(pcm_path, 'rb') | |
bytes_data = f.read() | |
# print(bytes_data) | |
data4 = np_data = np.frombuffer(bytes_data, dtype=np.int16)/32768.0 | |
print(np_data, np_data.shape) | |
print((data1 == data2).all()) | |
print((data2 == data3).all()) | |
print((data3 == data4).all()) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
1550500309979161_37470_38160.tmp.wav == output.pcm + wav_header