-
Notifications
You must be signed in to change notification settings - Fork 4
/
wefax.py
424 lines (349 loc) · 15.8 KB
/
wefax.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
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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
import time
from scipy.io import wavfile
import scipy.signal
import numpy as np
import scipy.io
from matplotlib import pyplot as plt
from progress_bar import plot_bar
from PIL import Image
from matplotlib.ticker import FormatStrFormatter
import matplotlib.animation as animation
import sys
import os
from config import Config
config = Config()
class Demodulator:
def __init__(self, filepath: str,
lines_per_minute: int = 120,
quiet: bool = False,
tcp_stream: bool = True):
if not os.path.exists(filepath):
raise Exception(f"INVALID FILE: file at path: {filepath} does not exist")
if filepath.split('.')[-1] != 'wav':
raise Exception("INVALID FILETYPE: only .wav files are supported at this moment")
self.filepath = filepath
self.filename = self.filepath.split('/')[-1]
self.lines_per_minute = lines_per_minute
self.time_for_one_frame = 1 / (self.lines_per_minute / 60) # in s
self.quiet = quiet
self.stream = tcp_stream
self.websocket_stack = []
if not self.quiet:
print("#" * 10 + ' ' * 5 + str(self.filename).ljust(20) + ' ' * 5 + "#" * 10)
def update_lines_per_minute(self, lpm):
self.lines_per_minute = lpm
self.time_for_one_frame = 1 / (lpm / 60) # in s
def process(self):
if self.quiet:
sys.stdout = open(os.devnull, 'w')
else:
sys.stdout = sys.__stdout__
self.audio_data, self.sample_rate, self.length = self.__read_file()
time.sleep(1)
if self.sample_rate != 11025:
self.audio_data, self.sample_rate, self.length = self.__resample(self.audio_data, self.sample_rate,
self.length)
self.__NOTCH_FILTER_FREQUENCY = int(config.settings['notch_filter_settings']['notch_filter_frequency'])
self.__NOTCH_FILTER_QUALITY_FACTOR = config.settings['notch_filter_settings']['notch_filter_quality_factor']
print(self.__NOTCH_FILTER_FREQUENCY, self.__NOTCH_FILTER_QUALITY_FACTOR, self.sample_rate)
b_notch, a_notch = scipy.signal.iirnotch(w0=self.__NOTCH_FILTER_FREQUENCY,
Q=self.__NOTCH_FILTER_QUALITY_FACTOR,
fs=self.sample_rate)
self.audio_data = scipy.signal.filtfilt(b_notch, a_notch, self.audio_data)
time.sleep(1)
self.demodulated_data = self.__demodulate(self.audio_data)
time.sleep(1)
self.digitalized_data = self.__digitalize(self.demodulated_data)
time.sleep(2)
self.phasing_signals = self.__find_sync_pulse(self.digitalized_data, self.sample_rate, self.time_for_one_frame)
self.start_frame = self.phasing_signals[-1] if self.phasing_signals else 0
self.output_image = self.__convert_to_image(self.digitalized_data[self.start_frame:],
self.time_for_one_frame,
self.sample_rate)
#print("#" * 50)
if self.stream:
message = {"data_type": "message",
"message_content": "convert_end"}
self.__send_websocket_packet(message)
if self.quiet:
sys.stdout = sys.__stdout__
def animated_spectrum(self):
window = 50000
jump = 500
interval = 1
sound = self.audio_data
rate = self.sample_rate
fig, ax = plt.subplots()
spec = plt.mlab.specgram(sound[:window], Fs=rate, detrend='linear', scale_by_freq=False)
arr = spec[0]
freq = spec[1]
max_freq = 5000
cut = max_freq / freq[-1] * arr.shape[0]
plt.ylim(0, cut)
im = plt.imshow(arr, animated=True, cmap='magma')
plt.xlabel("Time")
plt.ylabel("Frequency")
y_arr = [0, cut]
y_labels = ['0Hz', str(max_freq) + 'Hz']
plt.yticks(y_arr, y_labels)
def animate(i):
spec = plt.mlab.specgram(sound[i * jump:(i * jump) + window], Fs=rate, detrend='linear',
scale_by_freq=False)
arr = np.transpose(spec[0])[..., ::-1, :]
im.set_array(arr)
arrange = [0, arr.shape[1]]
time_start = str(round(i * jump / self.sample_rate, 2)) + 's'
time_end = str(round(((i * jump) + window) / self.sample_rate, 2)) + 's'
arrange_labels = [time_end, time_start]
ax.set_xlim(y_arr)
ax.set_ylim(arrange)
ax.set_xticks(y_arr, y_labels)
ax.set_yticks(arrange, arrange_labels, rotation=90)
ax.draw_artist(ax.get_xaxis())
ax.draw_artist(ax.get_yaxis())
return [im]
ani = animation.FuncAnimation(fig, animate, interval=interval, blit=False)
plt.show()
def signal_chart(self, start, end):
time_start = start
time_end = end
length = time_end - time_start
tick_freq = 0.5
arrange = np.arange(0, length * self.sample_rate + 1, tick_freq * self.sample_rate)
arrange_labels = [round(float(x), 1) for x in np.arange(time_start, time_end + 0.01, tick_freq)]
plt.gca().xaxis.set_major_formatter(FormatStrFormatter('%.2f s'))
data_crop = self.digitalized_data[time_start * self.sample_rate:int(time_end * self.sample_rate)]
data_am_crop = self.__demodulate(data_crop)
plt.ylim(ymin=0, ymax=255)
plt.xlim(xmin=0, xmax=length * self.sample_rate)
plt.plot(data_am_crop)
plt.xlabel("Samples")
plt.ylabel("Amplitude")
plt.title("Signal")
plt.xticks(arrange, arrange_labels)
for sig in self.phasing_signals:
plt.axvline(x=sig, color='red', linestyle='--')
plt.savefig(self.filename.split('.')[0] + ".png", dpi=600)
plt.show()
def __demodulate(self, data: list):
print("DEMODULATING SIGNAL:")
plot_bar(0, 1, 50, False)
if self.stream:
message = {"data_type": "progress_bar",
"progress_title": "demodulating signal",
"percentage": 0}
self.__send_websocket_packet(message)
hilbert_signal = scipy.signal.hilbert(data)
filtered_signal = scipy.signal.medfilt(np.abs(hilbert_signal), 5)
plot_bar(1, 1, 50, False)
if self.stream:
message = {"data_type": "progress_bar",
"progress_title": "demodulating signal",
"percentage": 100}
self.__send_websocket_packet(message)
print()
return filtered_signal
def __digitalize(self, data):
print("DIGITALIZING SIGNAL:")
plot_bar(0, 1, 50, False)
if self.stream:
message = {"data_type": "progress_bar",
"progress_title": "digitalizing signal",
"percentage": 0}
self.__send_websocket_packet(message)
time.sleep(1)
plow = 0.5
phigh = 99.5
(low, high) = np.percentile(data, (plow, phigh))
delta = high - low
digitalized = np.round(255 * (data - low) / delta)
digitalized[digitalized < 0] = 0
digitalized[digitalized > 255] = 255
plot_bar(1, 1, 50, False)
time.sleep(1)
print()
if self.stream:
message = {"data_type": "progress_bar",
"progress_title": "digitalizing signal",
"percentage": 99}
self.__send_websocket_packet(message)
if self.stream:
message = {"data_type": "progress_bar",
"progress_title": "digitalizing signal",
"percentage": 100}
self.__send_websocket_packet(message)
return [int(point) for point in digitalized]
def __find_sync_pulse(self, data, sample_rate, frame_len):
print("FINDING SYNC PULSE:")
def pattern_search():
samples = lambda x: int(x * frame_len * sample_rate)
sync = [1] * samples(0.005) + [0] * samples(0.001) + [1] * samples(0.005)
peaks = [(0, 0)]
# minimum distance between peaks
mindistance = int(frame_len * sample_rate * 0.8)
# need to shift the values down to get meaningful correlation values
signalshifted = [x - 128 for x in data]
sync = [x - 128 for x in sync]
for i in range(len(data) - len(sync)):
corr = np.dot(sync, signalshifted[i: i + len(sync)])
if i - peaks[-1][0] > mindistance:
# if previous peak is too far, keep it and add this value to the list as a new peak
peaks.append((i, corr))
plot_bar(i, len(data), 50, True, "samples")
if self.stream:
message = {"data_type": "progress_bar",
"progress_title": "finding sync pulse",
"percentage": (i / len(data)) * 100}
self.__send_websocket_packet(message)
elif corr > peaks[-1][1]:
# else if this value is bigger than the previous maximum, set this one
peaks[-1] = (i, corr)
if len(peaks) == 100:
plot_bar(len(data), len(data), 50, True, "samples")
print()
if self.stream:
message = {"data_type": "progress_bar",
"progress_title": "finding sync pulse",
"percentage": 100}
self.__send_websocket_packet(message)
break
return [peak[0] for peak in peaks]
def deviation_search(x):
allowed_deviation = 500 # samples
max_deviation = frame_len * sample_rate + allowed_deviation
min_deviation = frame_len * sample_rate - allowed_deviation
return True if max_deviation > x > min_deviation else False
def find_sync_pulses():
clear_peaks = []
for i in range(1, len(peaks) - 1):
distance_between_peaks = peaks[i] - peaks[i - 1]
if deviation_search(distance_between_peaks):
clear_peaks.append(peaks[i])
return clear_peaks
def find_peak_groups():
groups = []
group = []
for i in range(1, len(distanced_peaks) - 1):
distance_between_peaks = peaks[i] - peaks[i - 1]
if deviation_search(distance_between_peaks):
group.append(peaks[i])
else:
groups.append(group)
group = []
return groups
peaks = pattern_search()
distanced_peaks = find_sync_pulses()
peak_groups = find_peak_groups()
return max(peak_groups, key=len)
def __convert_to_image(self, data, time_for_one_frame, sample_rate):
print("CONVERTING SIGNAL TO IMAGE:")
frame_width = int(time_for_one_frame * sample_rate)
w, h = frame_width, len(data) // frame_width
image = Image.new('L', (w, h), )
px, py = 0, 0
for p in range(len(data)):
lum = 255 - data[p]
image.putpixel((px, py), lum)
px += 1
if px >= w:
if (py % 50) == 0:
plot_bar(py + 1, h, 50, True, "lines")
if self.stream:
message = {"data_type": "progress_bar",
"progress_title": "converting signal to image",
"percentage": (py + 1) / h * 100}
self.__send_websocket_packet(message)
px = 0
py += 1
if py >= h:
plot_bar(h, h, 50, True, "lines")
if self.stream:
message = {"data_type": "progress_bar",
"progress_title": "converting signal to image",
"percentage": 100}
self.__send_websocket_packet(message)
break
image = image.resize((w, 4 * h))
print()
return image
@staticmethod
def __create_image_from_matrix(matrix):
w = max([len(line) for line in matrix])
h = len(matrix)
print(w, h)
image = Image.new('L', (w, h), )
for y in range(h):
for x in range(w):
image.putpixel((x, y), matrix[y][x])
return image
def file_info(self):
sample_rate, data = wavfile.read(self.filepath)
channels = len(data.shape)
length = len(data) / sample_rate
return {"filename": self.filename, "channels": channels, "sample_rate": sample_rate, "length": length}
def __read_file(self):
sample_rate, data = wavfile.read(self.filepath)
if len(data.shape) == 2:
self.__warning("WARNING: two channels audio detected. Program will try to merge audio to one channel")
print("MERGING AUDIO CHANNELS:")
data = self.__merge_channels(data)
print()
length = len(data) / sample_rate
return data, sample_rate, length
def __merge_channels(self, audio_channels):
parts = len(audio_channels)
one_channel_audio = []
for p in range(parts):
if p % 1000 == 0 or p == parts - 1:
plot_bar(p + 1, parts, 50, True, "samples")
if self.stream:
message = {"data_type": "progress_bar",
"progress_title": "merging channels",
"percentage": (p + 1) / parts * 100}
self.__send_websocket_packet(message)
one_channel_audio.append(np.divide(np.add(audio_channels[p][0], audio_channels[p][1]), 2))
return one_channel_audio
def __resample(self, audio_data, sample_rate, length):
self.__warning("WARNING: audio sample rate is not 11025 samples per second. Program will try to resample audio")
print(f"RESAMPLING AUDIO FROM {round(sample_rate / 1000, 2)} KhZ TO 11.025 KHZ:")
plot_bar(0, 1, 50, False)
if self.stream:
message = {"data_type": "progress_bar",
"progress_title": "resampling audio",
"percentage": 0}
self.__send_websocket_packet(message)
data = scipy.signal.resample(audio_data, int(11025 * length))
plot_bar(1, 1, 50, False)
if self.stream:
message = {"data_type": "progress_bar",
"progress_title": "resampling audio",
"percentage": 100}
self.__send_websocket_packet(message)
print()
sample_rate = 11025
length = len(data) / sample_rate
return data, sample_rate, length
def __send_websocket_packet(self, message: dict):
self.websocket_stack.append(message)
@staticmethod
def __warning(text):
print(f"\033[0;33m{text}\033[0m")
def show_output_image(self):
plt.imshow(self.output_image, cmap='gray')
plt.show()
def save_output_image(self, filepath: str):
self.output_image.save(filepath)
if __name__ == "__main__":
filename = str(sys.argv[1])
lpm = int(sys.argv[2])
output = str(sys.argv[3])
demodulator = Demodulator(filename,
lines_per_minute=lpm,
tcp_stream=False, quiet=False)
for key, value in demodulator.file_info().items():
print(key, ":", value)
demodulator.process()
#demodulator.animated_spectrum()
# demodulator.show_output_image()
#demodulator.signal_chart(0, 60.5)
demodulator.save_output_image(output)