-
Notifications
You must be signed in to change notification settings - Fork 182
Description
Hello,
I am playing around with SDR with my newly bought RTL-SDR and I tried some of the examples given on the homepage (https://github.com/simonyiszk/csdr).
However, I could not manage to make any good quality demodulation of a standard WFM commercial broadcast using csdr. I applied the "Demodulate WFM: Advanced" command line almost as-it:
rtl_sdr -s 2400000 -f 97700000 -g 20 - | ./csdr convert_u8_f | ./csdr shift_addition_cc -0.085 | ./csdr fir_decimate_cc 10 0.05 HAMMING | ./csdr fmdemod_quadri_cf | ./csdr fractional_decimator_ff 5 | ./csdr deemphasis_wfm_ff 48000 50e-6 | ./csdr convert_f_s16 > csdr_decode.raw
but all I could get was a very noisy decoded sound. Here is a short audio clip after converting the raw to wav: Link to WAV file
This is surprising since I can get a much better output in GNU Radio using the very same sequence as csdr:

And then, on the same channel, only a few seconds apart, the output is really good: Link to WAV file
Am I missing something? Are these two doing something different?
--
felixzero