import struct import subprocess import wave import numpy as np WAVE_EXTENDED = 65534 WAVE_FORMAT_PCM = 1 WAVE_FORMAT_FLOAT = 3 # SAMPLE FORMAT SAMPLE_FORMAT_S8 = 1 SAMPLE_FORMAT_S16 = 2 SAMPLE_FORMAT_S24 = 3 SAMPLE_FORMAT_S32 = 4 SAMPLE_FORMAT_F32 = 5 SAMPLE_FORMAT_F64 = 6 def get_sample_format_string(sample_format): if sample_format == SAMPLE_FORMAT_S8: return 'int8' elif sample_format == SAMPLE_FORMAT_S16: return 'int16' elif sample_format == SAMPLE_FORMAT_S24: return 'int24' elif sample_format == SAMPLE_FORMAT_S32: return 'int32' elif sample_format == SAMPLE_FORMAT_F32: return 'flt32' elif sample_format == SAMPLE_FORMAT_F64: return 'flt64' else : raise Exception('Sample format {} not managed'.format(sample_format)) def get_sample_type(sample_format): if sample_format == SAMPLE_FORMAT_S8: return 'b' elif sample_format == SAMPLE_FORMAT_S16: return 'h' elif sample_format == SAMPLE_FORMAT_S24: raise Exception('Sample format s24 not managed') elif sample_format == SAMPLE_FORMAT_S32: return 'i' elif sample_format == SAMPLE_FORMAT_F32: return 'f' elif sample_format == SAMPLE_FORMAT_F64: return 'd' else: raise Exception('Sample format {} not managed'.format(sample_format)) def get_sample_scale_factor(sample_format): if sample_format == SAMPLE_FORMAT_S8: return float(pow(2, 7)) elif sample_format == SAMPLE_FORMAT_S16: return float(pow(2, 15)) elif sample_format == SAMPLE_FORMAT_S24: raise Exception("Sample format s24 not managed") elif sample_format == SAMPLE_FORMAT_S32: return float(pow(2, 23)) elif sample_format == SAMPLE_FORMAT_F32: return 1.0 elif sample_format == SAMPLE_FORMAT_F64: return 1.0 else: raise Exception('Sample format {} not managed'.format(sample_format)) def get_sample_size_in_bytes(sample_format): if sample_format == SAMPLE_FORMAT_S8: return 1 elif sample_format == SAMPLE_FORMAT_S16: return 2 elif sample_format == SAMPLE_FORMAT_S24: return 3 elif sample_format == SAMPLE_FORMAT_S32: return 4 elif sample_format == SAMPLE_FORMAT_F32: return 4 elif sample_format == SAMPLE_FORMAT_F64: return 8 else: raise Exception('Sample format {} not managed'.format(sample_format)) def get_sample_format(format_tag, bits_per_sample): if format_tag == WAVE_FORMAT_PCM: if bits_per_sample == 8: return SAMPLE_FORMAT_S8 elif bits_per_sample == 16: return SAMPLE_FORMAT_S16 elif bits_per_sample == 24: return SAMPLE_FORMAT_S24 elif bits_per_sample == 32: return SAMPLE_FORMAT_S32 else: raise Exception( 'Unexpected bits per sample {}'.format(bits_per_sample)) elif format_tag == WAVE_FORMAT_FLOAT: if bits_per_sample == 32: return SAMPLE_FORMAT_F32 elif bits_per_sample == 64: return SAMPLE_FORMAT_F64 else: raise Exception( 'Unexpected bits per sample {}'.format(bits_per_sample)) def read_fmt_chunk(chunk): _, w_format_tag, n_chan, sample_rate, \ _, _, bits_per_sample = struct.unpack(' gain_trigger or zeros <= max_zeros) and i < nb_samples: time = i * step if peak_start_time == 0: peak_start_time = time if gain > peak: peak = gain i += 1 if i == nb_samples: break gain = signal[i] if abs(gain) <= 1: zeros += 1 else: zeros = 0 if peak != 0: res.append(peak_start_time) i += 1 return res