shoc FAQ Reader
Hows Can I Convert a CRFS XDAT to a WAV File?
- Use SoX and wavetxt
 - The values for the sampling rate and the center_frequency can be taken from the corresponding xhdr files
 - conv_xdat2wav.bat content:
 
rem usage: filename, samplingrate center_frequency@echo offdel %1.txtdel %1.wavsox -t raw -r %2 -b 16 -e signed-integer -c 2 %1 -t wav %1.wavwavetxt -cx %1.wav f=%3
Last update on 2024-02-06 by Rolf Haenggi.