-
|
Hello there, |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
|
Hi, it always depends what you want to achieve. There is the 'official' osmocom lib. See https://github.com/osmocom/rtl-sdr. This version is a Rust port and therefore interesting, since no c-bindings is required. Regards, |
Beta Was this translation helpful? Give feedback.
-
|
I figured it out, I just downloaded the whole rep., It seems to be working on windows and detecing my SDR (its a nooelec nesdr smart gen4 i think). |
Beta Was this translation helpful? Give feedback.
I figured it out, I just downloaded the whole rep., It seems to be working on windows and detecing my SDR (its a nooelec nesdr smart gen4 i think).
Now I wanted to try out that FM example, the Commands to run it that are provided are only for Mac/Linux tho. So I tried searching for something similar on Windows and I am using the following now:
cargo run --example simple_fm | vlc --rawaud-samplerate=32000 --audiofile-format=S16_LE, which should be the same as the Linux one provided just with "vlc" (you need to download VLC and then just add the folder of it to path).It seems to be working and I get no errors BUT: It doesnt play any audio, I do not know enough about this to find out where …