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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
|
#!/usr/bin/env python
#
# Copyright 2008,2010,2013,2020 Free Software Foundation, Inc.
#
# This file is part of GNU Radio
#
# SPDX-License-Identifier: GPL-3.0-or-later
#
#
from gnuradio import gr, gr_unittest, blocks
import os
from os.path import getsize
g_in_file = os.path.join(os.getenv("srcdir"), "test_16bit_1chunk.wav")
g_extra_header_offset = 36
g_extra_header_len = 22
class test_wavefile(gr_unittest.TestCase):
def setUp(self):
self.tb = gr.top_block()
def tearDown(self):
self.tb = None
def test_001_checkwavread(self):
wf = blocks.wavfile_source(g_in_file)
self.assertEqual(wf.sample_rate(), 8000)
def test_002_checkwavcopy(self):
infile = g_in_file
outfile = "test_out.wav"
wf_in = blocks.wavfile_source(infile)
wf_out = blocks.wavfile_sink(outfile,
wf_in.channels(),
wf_in.sample_rate(),
wf_in.bits_per_sample())
self.tb.connect(wf_in, wf_out)
self.tb.run()
wf_out.close()
# Test file validity.
import wave
try:
with wave.open(infile, 'rb') as f:
pass
with wave.open(outfile, 'rb') as f:
pass
except:
raise AssertionError('Invalid WAV file')
# we're losing all extra header chunks
self.assertEqual(getsize(infile) - g_extra_header_len, getsize(outfile))
with open(infile, 'rb') as f:
in_data = bytearray(f.read())
with open(outfile, 'rb') as f:
out_data = bytearray(f.read())
os.remove(outfile)
# Ignore size field:
in_data[4:8] = b'\x00\x00\x00\x00'
out_data[4:8] = b'\x00\x00\x00\x00'
# cut extra header chunks from input file
self.assertEqual(in_data[:g_extra_header_offset] + \
in_data[g_extra_header_offset + g_extra_header_len:], out_data)
def test_003_checkwav_append_copy(self):
infile = g_in_file
outfile = "test_out_append.wav"
# 1. Copy input to output
from shutil import copyfile
copyfile(infile, outfile)
# 2. append copy
wf_in = blocks.wavfile_source(infile)
wf_out = blocks.wavfile_sink(outfile,
wf_in.channels(),
wf_in.sample_rate(),
wf_in.bits_per_sample(),
True)
self.tb.connect(wf_in, wf_out)
self.tb.run()
wf_out.close()
# 3. append halved copy
wf_in = blocks.wavfile_source(infile)
halver = blocks.multiply_const_ff(0.5)
wf_out = blocks.wavfile_sink(outfile,
wf_in.channels(),
wf_in.sample_rate(),
wf_in.bits_per_sample(),
True)
self.tb.connect(wf_in, halver, wf_out)
self.tb.run()
wf_out.close()
# Test file validity and read data.
import wave
try:
# In
with wave.open(infile, 'rb') as w_in:
in_params = w_in.getparams()
data_in = wav_read_frames(w_in)
# Out
with wave.open(outfile, 'rb') as w_out:
out_params = w_out.getparams()
data_out = wav_read_frames(w_out)
except:
raise AssertionError('Invalid WAV file')
# Params must be equal except in size:
expected_params = in_params._replace(nframes=3*in_params.nframes)
self.assertEqual(out_params, expected_params)
# Part 1
self.assertEqual(data_in, data_out[:len(data_in)])
# Part 2
self.assertEqual(data_in, data_out[len(data_in):2*len(data_in)])
# Part 3
data_in_halved = [int(round(d/2)) for d in data_in]
self.assertEqual(data_in_halved, data_out[2*len(data_in):])
def test_003_checkwav_append_non_existent_should_error(self):
outfile = "no_file.wav"
with self.assertRaisesRegex(RuntimeError, 'WAV append mode requires target file to exist'):
blocks.wavfile_sink(outfile, 1, 44100, 16, True)
def wav_read_frames(w):
import struct
# grouper from itertools recipes.
grouper = lambda iterable, n: list(zip(* ([iter(iterable)] * n) ))
assert w.getsampwidth() == 2 # Assume 16 bits
return [
struct.unpack('<h', bytes(frame_g))[0]
for frame_g in grouper(w.readframes(w.getnframes()), 2)
]
if __name__ == '__main__':
gr_unittest.run(test_wavefile)
|