Compare commits
3 Commits
5f3c41ca3d
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
78f086e264 | ||
|
|
8f6e2bbdee | ||
|
|
bb2f317af4 |
@@ -22,9 +22,10 @@ Three Docker containers via `docker-compose`:
|
|||||||
## Usage
|
## Usage
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
ssh m@sdr-pi
|
ssh user@your-pi
|
||||||
cd /workspace
|
git clone gitea@git.michaelsmith.be:m/sdr-recorder.git
|
||||||
|
cd sdr-recorder
|
||||||
docker compose up -d
|
docker compose up -d
|
||||||
```
|
```
|
||||||
|
|
||||||
Recordings are saved to `~/recordings/` and browsable at `http://sdr-pi:8080`.
|
Recordings are saved to `~/recordings/` and browsable at `http://<hostname>:8080`.
|
||||||
|
|||||||
@@ -24,7 +24,7 @@ services:
|
|||||||
container_name: sdr-cleanup
|
container_name: sdr-cleanup
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
environment:
|
environment:
|
||||||
- SIZE_THRESHOLD=3k
|
- SIZE_THRESHOLD=7k
|
||||||
- INTERVAL=300
|
- INTERVAL=300
|
||||||
volumes:
|
volumes:
|
||||||
- ./cleanup-recordings.sh:/cleanup-recordings.sh:ro
|
- ./cleanup-recordings.sh:/cleanup-recordings.sh:ro
|
||||||
|
|||||||
@@ -79,6 +79,38 @@ devices:
|
|||||||
dated_subdirectories = true;
|
dated_subdirectories = true;
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
},
|
||||||
|
{
|
||||||
|
freq = 27.385;
|
||||||
|
bandwidth = 8000;
|
||||||
|
modulation = "nfm";
|
||||||
|
squelch_snr_threshold = 9.0;
|
||||||
|
label = "CB-CH38";
|
||||||
|
outputs: (
|
||||||
|
{
|
||||||
|
type = "file";
|
||||||
|
directory = "/recordings";
|
||||||
|
filename_template = "CB_CH38_27385";
|
||||||
|
split_on_transmission = true;
|
||||||
|
dated_subdirectories = true;
|
||||||
|
}
|
||||||
|
);
|
||||||
|
},
|
||||||
|
{
|
||||||
|
freq = 27.395;
|
||||||
|
bandwidth = 8000;
|
||||||
|
modulation = "nfm";
|
||||||
|
squelch_snr_threshold = 9.0;
|
||||||
|
label = "CB-CH39";
|
||||||
|
outputs: (
|
||||||
|
{
|
||||||
|
type = "file";
|
||||||
|
directory = "/recordings";
|
||||||
|
filename_template = "CB_CH39_27395";
|
||||||
|
split_on_transmission = true;
|
||||||
|
dated_subdirectories = true;
|
||||||
|
}
|
||||||
|
);
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user