Rev 4 |
|
Rev 20 |
Line 1... |
|
Line 1... |
1 |
; Specify a file into which sidd will write messages. |
|
1 |
; Specify a file into which sidd will write messages. |
2 |
logfile ./sidd.log |
|
2 |
logfile /mnt/sidd.log |
3 |
|
|
3 |
|
4 |
; The input device and mixer |
|
4 |
; The input device and mixer |
5 |
device /dev/dsp |
|
5 |
device /dev/dsp |
6 |
mixer /dev/mixer |
|
6 |
mixer /dev/mixer |
7 |
|
|
7 |
|
8 |
; Specify the mode of operation - stereo or mono. In stereo mode, |
|
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. |
|
9 |
; sidd will run two independent monitors, each with its own output file. |
10 |
|
|
10 |
|
11 |
mode stereo |
|
11 |
mode mono |
12 |
|
|
12 |
|
13 |
; The requested sample rate. The software will use the closest |
|
13 |
; The requested sample rate. The software will use the closest |
14 |
; setting available from the soundcard. |
|
14 |
; setting available from the soundcard. |
15 |
rate 48000 |
|
15 |
rate 96000 |
16 |
|
|
16 |
|
17 |
; Sample size, 8 or 16 bits. 16 bits is strongly recommended, 8 bit is |
|
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. |
|
18 |
; provided in case your soundcard or driver doesn't do 16. |
19 |
|
|
19 |
|
20 |
bits 16 |
|
20 |
bits 16 |
Line 37... |
|
Line 37... |
37 |
;gain record 100 100 |
|
37 |
;gain record 100 100 |
38 |
|
|
38 |
|
39 |
; Specify a directory to contain daily data files. Use '.' for the |
|
39 |
; Specify a directory to contain daily data files. Use '.' for the |
40 |
; current directory. Output files will be datadir/yymmdd.dat when running |
|
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 |
|
41 |
; in mono, otherwise datadir/yymmdd.left.dat and datadir/yymmdd.right.dat |
42 |
datadir . |
|
42 |
datadir /mnt |
43 |
|
|
43 |
|
44 |
; Enable real time scheduling of sidd. Recommended so that soundcard buffers |
|
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 |
|
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. |
|
46 |
; timestamped. You have to be running as root for this to work. |
47 |
sched high |
|
47 |
sched high |