checkin in opus reference decoder

This commit is contained in:
jacqueline
2023-08-01 10:14:23 +10:00
parent d41de537a0
commit 23393312b7
414 changed files with 101944 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
#!/usr/bin/python
from __future__ import print_function
import numpy as np
import h5py
import sys
data = np.loadtxt(sys.argv[1], dtype='float32')
h5f = h5py.File(sys.argv[2], 'w');
h5f.create_dataset('data', data=data)
h5f.close()