Open source, multi-user SDR receiver software with a web interface
Go to file
ha7ilm 15ada52bfa python2 fix, ctrl+c now exits app, useless javascript console message removed 2014-11-30 12:21:19 +01:00
htdocs python2 fix, ctrl+c now exits app, useless javascript console message removed 2014-11-30 12:21:19 +01:00
plugins removed *.pyc accidentally added 2014-11-29 14:00:32 +01:00
README.md insert shebang, fix readme 2014-11-29 18:50:25 +01:00
config_rtl.py initial commit 2014-11-29 01:07:10 +01:00
config_webrx.py added ddc_transition_bw() 2014-11-29 13:56:56 +01:00
openwebrx.py python2 fix, ctrl+c now exits app, useless javascript console message removed 2014-11-30 12:21:19 +01:00
rtl_mus.py python2 fix, ctrl+c now exits app, useless javascript console message removed 2014-11-30 12:21:19 +01:00
rxws.py initial commit 2014-11-29 01:07:10 +01:00
screenshot.png screenshot fix, tnx hg2ecz 2014-11-29 18:47:50 +01:00

README.md

OpenWebRX

OpenWebRX is a multi-user SDR receiver software with a web interface.

OpenWebRX

It has the following features:

  • libcsdr based demodulators (AM/FM/SSB),
  • filter passband can be set from GUI,
  • waterfall display can be shifted back in time,
  • it extensively uses HTML5 features like WebSocket, Web Audio API, and <canvas>.
  • 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 Linux and python 2.7 to run.

First you will need to install the dependencies:

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 http://localhost:8073.

Please note that the server is also listening on the following ports (on localhost only):

  • 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.

Actually, if you do something cool with OpenWebRX (or just have a problem), please drop me a mail:
Andras Retzler, HA7ILM <randras@sdr.hu>

I would like to maintain a list of online amateur radio receivers on openwebrx.org.

Usage tips

You can zoom the waterfall display by the mouse wheel. You can also drag the waterfall to pan across it.

The filter envelope can be dragged at its ends and moved around to set the passband.

However, if you hold down the shift key, you can drag the center line (BFO) or the whole passband (PBS).

Configuration tips

If you want to run OpenWebRX on a remote server instead of localhost, do not forget to set server_hostname in config_webrx.py, or you may get a WebSocket error.

DSP CPU usage can be fine-tuned in plugins/dsp/csdr/plugin.py: you can set transition bandwidths higher (thus degrade filter performance by decreasing the length of the kernel, but also decrease CPU usage).

Todo

Currently, clients use up a lot of bandwidth. This will be improved later.