-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathtest.py
52 lines (36 loc) · 1.11 KB
/
test.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from __future__ import absolute_import, division, print_function
import numpy as np
import wave
import math
from ctypes import *
ll = cdll.LoadLibrary
lib = ll("./build/lib.linux-x86_64-2.7/_simple_ns.so")
chunk = 160
filename = 'test_case1.wav'
dataout = np.zeros((160))
dataout = dataout.astype(np.int16)
f = wave.open(filename,"rb")
pms = f.getparams()
nchannels, sampwidth, framerate, nframes = pms[:4]
cycle = int(math.ceil(nframes/chunk))
dataoutall = np.zeros(cycle*160)
dataoutall = dataoutall.astype(np.int16)
lib.webrtc_nsx_create.restype=c_void_p
a = lib.webrtc_nsx_create(2)
for j in range(cycle):
data = f.readframes(chunk)
data = np.fromstring(data, np.int16)
b_arr = (c_short*160)(*dataout)
a_arr = (c_short*160)(*data)
lib.webrtc_nsx_process(a, a_arr, b_arr)
for i in range(160):
dataoutall[i + j*160] = b_arr[i]
dataoutall = dataoutall.tostring()
wave_out=wave.open("out.wav",'w')
wave_out.setnchannels(1)
wave_out.setsampwidth(2)
wave_out.setframerate(16000)
wave_out.writeframes(dataoutall)
print("DONE!")