2014-11-29 00:07:10 +00:00
|
|
|
OpenWebRX
|
2014-11-28 20:55:31 +00:00
|
|
|
=========
|
|
|
|
|
2014-11-29 00:07:10 +00:00
|
|
|
OpenWebRX is a multi-user SDR receiver software with a web interface.
|
|
|
|
|
|
|
|
![OpenWebRX](/screenshot.jpg?raw=true)
|
|
|
|
|
|
|
|
It has the following features:
|
|
|
|
|
|
|
|
- <a href="https://github.com/simonyiszk/csdr">libcsdr</a> based demodulators (AM/FM/SSB),
|
2014-11-29 00:10:36 +00:00
|
|
|
- filter passband can be set from GUI,
|
2014-11-29 00:07:10 +00:00
|
|
|
- waterfall display can be shifted back in time,
|
2014-11-29 00:10:36 +00:00
|
|
|
- it extensively uses HTML5 features like WebSocket, Web Audio API, and <canvas>.
|
2014-11-29 00:07:10 +00:00
|
|
|
- it works in Google Chrome, Chromium (above version 37) and Mozilla Firefox (above version 28),
|
|
|
|
- currently only supports RTL-SDR, but other SDR hardware may be easily added.
|
|
|
|
|
|
|
|
## Setup
|
|
|
|
|
|
|
|
OpenWebRX currently requires a Linux machine to run.
|
|
|
|
|
|
|
|
First you will need to install the dependencies:
|
2014-11-29 00:07:47 +00:00
|
|
|
|
2014-11-29 00:07:10 +00:00
|
|
|
- <a href="https://github.com/simonyiszk/csdr">libcsdr</a>
|
|
|
|
- <a href="http://sdr.osmocom.org/trac/wiki/rtl-sdr">rtl-sdr</a>
|
|
|
|
|
|
|
|
After cloning this repository and connecting an RTL-SDR dongle to your computer, you can run the server:
|
|
|
|
|
|
|
|
python openwebrx.py
|
|
|
|
|
|
|
|
You can now open the GUI at <a href="http://localhost:8073">http://localhost:8073</a>.
|
|
|
|
|
2014-11-29 00:12:17 +00:00
|
|
|
Please note that the server is also listening on the following ports (on localhost only):
|
2014-11-29 00:07:47 +00:00
|
|
|
|
2014-11-29 00:07:10 +00:00
|
|
|
- port 8888 for the I/Q source,
|
|
|
|
- port 4951 for the multi-user I/Q server.
|
|
|
|
|
|
|
|
Now the next step is to customize the parameters of your server in `config_webrx.py`.
|
|
|
|
|
2014-11-29 00:13:15 +00:00
|
|
|
Actually, if you do something cool with OpenWebRX (or just have a problem), please drop me a mail:
|
2014-11-29 00:13:38 +00:00
|
|
|
*Andras Retzler, HA7ILM <randras@sdr.hu>*
|
2014-11-29 00:13:15 +00:00
|
|
|
|
2014-11-29 00:07:10 +00:00
|
|
|
I would like to maintain a list of online amateur radio receivers on <a href="http://sdr.hu/">sdr.hu</a>.
|
|
|
|
|
|
|
|
## Usage tips
|
|
|
|
|
2014-11-29 00:07:47 +00:00
|
|
|
The filter envelope can be dragged at its ends and moved around to set the passband.
|
2014-11-29 00:07:10 +00:00
|
|
|
|
2014-11-29 00:17:27 +00:00
|
|
|
However, if you hold the shift key, you can drag the center line (BFO) or the whole passband (PBS).
|
2014-11-29 00:07:47 +00:00
|
|
|
|
|
|
|
## Todo
|
|
|
|
|
|
|
|
Currently, clients use up a lot of bandwidth. This will be improved later.
|