-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathradiobattletoads.conf.dist
60 lines (51 loc) · 1.91 KB
/
radiobattletoads.conf.dist
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# Radio Battletoads configuration file
# Read the README file to understand the radio architecture first
# You'll need to setup several pieces of software before going on!
# Yep. This is just a sourced BASH script. Careful with that!
# VLC interface configuration.
VLC_USERNAME="admin"
VLC_PASSWORD="hackme"
VLC_SERVER="radioserver.example.com"
VLC_PORT=16223
# VLC quality configuation. Please tweak this carefully.
# Invalid values will turn VLC into a potato.
VLC_CHANNELS=2
VLC_SAMPLERATE=44100
VLC_BITRATE=64
# Web server where calendario.php and friends will be located at
WEB_SERVER="webserver.example.com"
WEB_KEY="set-on-webserver-configuration"
# Icecast2 configuration
ICECAST2_SERVER="radioserver.example.com"
ICECAST2_USERNAME="admin"
ICECAST2_PASSWORD="hackme"
ICECAST2_PORT=8000
ICECAST2_MOUNT="default"
ICECAST2_MOUNT_USER="source"
ICECAST2_MOUNT_PASSWORD="hackme"
# Directories configuration.
# ALL THESE directories must exist, and the scripts
# must have r/w permissions over them
# Create the directories if neccessary. See the README.
RBT_BASEDIR="/home/radiobattletoads"
RBT_LOGDIR="$RBT_BASEDIR/logs"
RBT_MUSICADIR="$RBT_BASEDIR/musica"
RBT_PODCASTSDIR="$RBT_BASEDIR/podcasts"
RBT_CUNHASDIR="$RBT_BASEDIR/cunhas"
RBT_DUMPSDIR="$RBT_BASEDIR/dumps"
RBT_DUMPSARCHIVEDIR="$RBT_BASEDIR/dumps-archive"
RBT_DIFERIDOSDIR="$RBT_BASEDIR/diferidos"
RBT_SCRIPTSDIR="$RBT_BASEDIR/scripts"
# Tweet every new program?
# You must also configure ttytter. See the README.
# true or TRUE means true, anything else means false
USE_TWITTER="true"
# The radio keeps an ogg dump of the stream. After these
# number of days, the dumps will be erased. You can set
# this to some high values as 999 and worry not.
KEEPDUMPS_DAYS=12
# The music located ad $RBT_MUSICADIR starting with $JINGLE_PREFIX
# will be trated like a jingle, and it will be inserted between
# other songs, every $JINGLE_EVERY songs.
JINGLE_PREFIX="rbt_cunha"
JINGLE_EVERY=3