source: roaraudio/dist/debian-like/defaults @ 3690:c5de4a9e79bf

Last change on this file since 3690:c5de4a9e79bf was 3690:c5de4a9e79bf, checked in by phi, 14 years ago

added support for RSound emulation

File size: 2.6 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'
15ROARD_REALTIME='YES'
16
17# PIDFile for roard:
18# Default is enabled at /var/run/roard.pid
19# Set to empty string to disable.
20#PIDFILE='/var/run/roard.pid'
21
22# Location of roard:
23# This is a human readable location of the roard used
24# for Zero Conf locating of a RoarAudio server on the
25# Network. To use Zero Conf enable SLP (see below).
26#ROARD_LOCATION=''
27
28# Default location for roard:
29# Set this to a remote address and disable local roard
30# to run a network only setup.
31# ROARAUDIO_DEFAULT_SOCKET='server.local'
32
33# --- [ Network ] ---
34
35# Listening socket's address family:
36# UNIX   - Local connections only
37# TCP    - Connections via TCP/IP
38# DECnet - Connections via DECnet
39ROARD_AF='UNIX'
40
41# Socket to listen on (UNIX):
42ROARD_SOCKET='/tmp/roar'
43
44# Port to listen on (TCP):
45# ROARD_PORT=16002
46
47# Host/Nodename to listen on (TCP, DECnet):
48# use a value of '0.0.0.0' to listen publicly for TCP.
49# ROARD_HOST='0.0.0.0'
50
51# Object to listen on (DECnet):
52# ROARD_OBJECT='roar'
53
54# Annouce us via OpenSLP:
55# Set to YES or NO.
56# In case of YES roarclients can autolocat this server
57# on the network.
58ROARD_SLP='NO'
59
60# --- [ EsounD Emulation ] ---
61
62# Listen socket for server side EsounD emulation:
63# NONE   - Disable EsounD emulation
64# UNIX   - Local connections only
65# TCP    - Connections via TCP/IP
66ROARD_EMUL_ESD_AF='NONE'
67
68# --- [ RSound Emulation ] ---
69
70# Listen socket for server side RSound emulation:
71# NONE   - Disable RSound emulation
72# UNIX   - Local connections only
73# TCP    - Connections via TCP/IP
74# DECnet - Connections via DECnet
75ROARD_EMUL_RSOUND_AF='NONE'
76
77# --- [ Audio and Devices ] ---
78
79# Samplerate, number of channels and bits per sample:
80# ROARD_RATE=44100
81# ROARD_CHANNELS=2
82# ROARD_BITS=16
83
84# Sound Driver and Device:
85# To get a list run: roard --list-driver
86# Don't forget to include 'sync' in the options unless
87# you REALLY, REALLY know what you are doing
88# ROARD_DRIVER='oss'
89# ROARD_DEVICE='/dev/dsp'
90# ROARD_DRIVER_OPTIONS='sync'
91
92# --- [ Permitions ] ---
93
94# User and Group to run roard with:
95# Note: Users in the same group my access roard
96#       if runnung in UNIX mode.
97# ROARD_USER='roard'
98# ROARD_GROUP='audio'
99
100# --- [ Security ] ---
101
102# Directory to chroot to:
103# Use empty value to disable.
104# Directory may/should be completly empty.
105#ROARD_CHROOT=''
106
107#ll
Note: See TracBrowser for help on using the repository browser.