Created
July 28, 2023 00:17
-
-
Save ArrEssJay/2ca9f518b78716bd151bce62f02a74d5 to your computer and use it in GitHub Desktop.
Convert GQRX IQ Recording to SDRTrunk
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// GQRX IQ recording: | |
// Raw interleaved IQ samples, 32-bit IEEE float @ receiver sampling rate | |
// | |
// SDRTrunk recording: | |
// WAV file, interleaved IQ samples, signed 16-bit @ receiver sampling rate | |
// | |
// 'sox' can be used to downsample and append the WAV header | |
sox -c 2 -t f32 -r 2400000 <infile> -b 16 -t wav <outfile> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment