source: roaraudio/dist/debian-like/defaults @ 1047:d19a9c88898d

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

added basic rc scripts for debian like systems

File size: 1.4 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# ROARD_DRIVER='oss'
53# ROARD_DEVICE='/dev/dsp'
54# ROARD_DRIVER_OPTIONS=''
55
56# --- [ Permitions ] ---
57
58# User and Group to run roard with:
59# Note: Users in the same group my access roard
60#       if runnung in UNIX mode.
61# ROARD_USER='roard'
62# ROARD_GROUP='audio'
63
64#ll
Note: See TracBrowser for help on using the repository browser.