4 |
kaklik |
1 |
; Specify a file into which sidd will write messages. |
|
|
2 |
logfile ./sidd.log |
|
|
3 |
|
|
|
4 |
; The input device and mixer |
|
|
5 |
device /dev/dsp |
|
|
6 |
mixer /dev/mixer |
|
|
7 |
|
|
|
8 |
; Specify the mode of operation - stereo or mono. In stereo mode, |
|
|
9 |
; sidd will run two independent monitors, each with its own output file. |
|
|
10 |
|
|
|
11 |
mode stereo |
|
|
12 |
|
|
|
13 |
; The requested sample rate. The software will use the closest |
|
|
14 |
; setting available from the soundcard. |
|
|
15 |
rate 48000 |
|
|
16 |
|
|
|
17 |
; Sample size, 8 or 16 bits. 16 bits is strongly recommended, 8 bit is |
|
|
18 |
; provided in case your soundcard or driver doesn't do 16. |
|
|
19 |
|
|
|
20 |
bits 16 |
|
|
21 |
|
|
|
22 |
; Number of frequency bins to use. The FFT size is 2*bins and the program |
|
|
23 |
; will issue an output record every (2*bins)/rate seconds. |
|
|
24 |
bins 2048 |
|
|
25 |
|
|
|
26 |
; Line input gains, left and right. If using mono, set them both the same. |
|
|
27 |
; Range is 0 to 100. The logfile will report the actual values set, which |
|
|
28 |
; may differ a little. |
|
|
29 |
;gain line 77 100 |
|
|
30 |
|
|
|
31 |
gain mic 100 100 |
|
|
32 |
|
|
|
33 |
; Overall input gains, comments as above. |
|
|
34 |
;gain overall 86 100 |
|
|
35 |
|
|
|
36 |
; Overall record level, comments as above. |
|
|
37 |
;gain record 100 100 |
|
|
38 |
|
|
|
39 |
; Specify a directory to contain daily data files. Use '.' for the |
|
|
40 |
; current directory. Output files will be datadir/yymmdd.dat when running |
|
|
41 |
; in mono, otherwise datadir/yymmdd.left.dat and datadir/yymmdd.right.dat |
|
|
42 |
datadir . |
|
|
43 |
|
|
|
44 |
; Enable real time scheduling of sidd. Recommended so that soundcard buffers |
|
|
45 |
; are read promptly, which means minimum latency before each fft buffer is |
|
|
46 |
; timestamped. You have to be running as root for this to work. |
|
|
47 |
sched high |
|
|
48 |
|
|
|
49 |
; Specify the email address of whoever is to get any bad news. |
|
|
50 |
; mail someone@someplace |
|
|
51 |
|
|
|
52 |
; The loss-of-signal warning threshold and time delay. If the input |
|
|
53 |
; signal peak level (0-1.0) falls below the given threshold for more than |
|
|
54 |
; the delay time, a warning will be issued. The threshold applies to both |
|
|
55 |
; left and right in stereo mode, on the assumption that you've set the gains |
|
|
56 |
; so that the signal levels are about the same anyway. |
|
|
57 |
los 0.06 5 |
|
|
58 |
|
|
|
59 |
; Specify a file into which spectrum data will regularly be written. |
|
|
60 |
; This file is overwritten with a fresh spectrum roughly every |
|
|
61 |
; 100 * 2 * bins/rate seconds. The spectrum file contains three space |
|
|
62 |
; separated columns: bin centre frequency (Hz) and the average power |
|
|
63 |
; in the bin (relative), for the left and right channels. In mono mode, |
|
|
64 |
; there are just two columns |
|
|
65 |
spectrum /tmp/sidspec 100 |
|
|
66 |
|
|
|
67 |
; Specify the channels to monitor. The ident field is not actually used by |
|
|
68 |
; sidd. |
|
|
69 |
; |
|
|
70 |
; ident from to |
|
|
71 |
band 18k3HWU 18200 18400 ; Le Blanc, France |
|
|
72 |
band 19k6GBZ 19480 19680 ; Anthorn, UK |
|
|
73 |
band 22k1GBZ 22050 22150 ; Skelton, UK |
|
|
74 |
band 20k3ICV 20190 20340 ; Tavolara, Italy |
|
|
75 |
band B1 20800 21000 ; Background channel |
|
|
76 |
band B2 22650 22850 ; Background channel |
|
|
77 |
|