Skip to content

Instantly share code, notes, and snippets.

@ArrEssJay
Created July 28, 2023 00:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ArrEssJay/2ca9f518b78716bd151bce62f02a74d5 to your computer and use it in GitHub Desktop.
Save ArrEssJay/2ca9f518b78716bd151bce62f02a74d5 to your computer and use it in GitHub Desktop.
Convert GQRX IQ Recording to SDRTrunk
// 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