source: roaraudio/dist/debian-like/defaults @ 1147:d746d3147d3b

Last change on this file since 1147:d746d3147d3b was 1147:d746d3147d3b, checked in by phi, 15 years ago

corrected use of ROARD_DRIVER_OPTIONS config var

File size: 1.5 KB
Line 
1#RoarAudio Configuration
2
3# --- [ General Options ]---
4
5# Start roard? YES or NO:
6ROARD='YES'
7
8# Additionl Options to pass to roard, should normally be empty
9ROARD_OPTS=''
10
11# Should we run roard in realtime mode:
12# NO     - Don't run in realtime mode
13# YES    - Run in realtime mode
14# DOUBLE - Try to run in a 'very realtime mode'
15# ROARD_REALTIME='YES'
16
17# Default location for roard:
18# Set this to a remote address and disable local roard
19# to run a network only setup.
20# ROARAUDIO_DEFAULT_SOCKET='server.local'
21
22# --- [ Network ] ---
23
24# Listening socket's address family:
25# UNIX   - Local connections only
26# TCP    - Connections via TCP/IP
27# DECnet - Connections via DECnet
28ROARD_AF='UNIX'
29
30# Socket to listen on (UNIX):
31ROARD_SOCKET='/tmp/roar'
32
33# Port to listen on (TCP):
34# ROARD_PORT=16002
35
36# Host/Nodename to listen on (TCP, DECnet):
37# use a value of '0.0.0.0' to listen publicly for TCP.
38# ROARD_HOST='0.0.0.0'
39
40# Object to listen on (DECnet):
41# ROARD_OBJECT='roar'
42
43# --- [ Audio and Devices ] ---
44
45# Samplerate, number of channels and bits per sample:
46# ROARD_RATE=44100
47# ROARD_CHANNELS=2
48# ROARD_BITS=16
49
50# Sound Driver and Device:
51# To get a list run: roard --list-driver
52# Don't forget to include 'sync' in the options unless
53# you REALLY, REALLY know what you are doing
54# ROARD_DRIVER='oss'
55# ROARD_DEVICE='/dev/dsp'
56# ROARD_DRIVER_OPTIONS='sync'
57
58# --- [ Permitions ] ---
59
60# User and Group to run roard with:
61# Note: Users in the same group my access roard
62#       if runnung in UNIX mode.
63# ROARD_USER='roard'
64# ROARD_GROUP='audio'
65
66#ll
Note: See TracBrowser for help on using the repository browser.