updated sample config file to new format
This commit is contained in:
parent
d8d71099e2
commit
26f9492d53
|
@ -1,24 +1,56 @@
|
||||||
# sample DarkIce configuration file, edit for your needs before using
|
# sample DarkIce configuration file, edit for your needs before using
|
||||||
# see the DarkIce man page for details
|
# see the darkice.cfg man page for details
|
||||||
|
|
||||||
|
# this section describes general aspects of the live streaming session
|
||||||
[general]
|
[general]
|
||||||
duration = 60
|
duration = 60 # duration of encoding, in seconds. 0 means forever
|
||||||
bufferSecs = 5
|
bufferSecs = 5 # size of internal slip buffer, in seconds
|
||||||
|
|
||||||
|
# this section describes the audio input that will be streamed
|
||||||
[input]
|
[input]
|
||||||
device = /dev/dsp
|
device = /dev/dsp # OSS DSP soundcard device for the audio input
|
||||||
sampleRate = 22050
|
sampleRate = 22050 # sample rate in Hz. try 11025, 22050 or 44100
|
||||||
bitsPerSample = 16
|
bitsPerSample = 16 # bits per sample. try 16
|
||||||
channel = 2
|
channel = 2 # channels. 1 = mono, 2 = stereo
|
||||||
|
|
||||||
[lame0]
|
# this section describes a streaming connection to an IceCast server
|
||||||
bitrate = 96
|
# there may be up to 8 of these sections, named [icecast-0] ... [icecast-7]
|
||||||
|
# these can be mixed with [shoutcast-x] sections
|
||||||
|
[icecast-0]
|
||||||
|
bitrate = 96 # bitrate of the mp3 stream sent to the server
|
||||||
server = yp.yourserver.com
|
server = yp.yourserver.com
|
||||||
port = 8000
|
# host name of the server
|
||||||
password = hackme
|
port = 8000 # port of the IceCast server, usually 8000
|
||||||
mountPoint = live96
|
password = hackme # source password to the IceCast server
|
||||||
|
mountPoint = sample96 # mount point of this stream on the IceCast server
|
||||||
name = DarkIce trial
|
name = DarkIce trial
|
||||||
|
# name of the stream
|
||||||
description = This is only a trial
|
description = This is only a trial
|
||||||
|
# description of the stream
|
||||||
url = http://www.yourserver.com
|
url = http://www.yourserver.com
|
||||||
genre = live
|
# URL related to the stream
|
||||||
public = no
|
genre = my own # genre of the stream
|
||||||
remoteDumpFile = /tmp/live96.mp3
|
public = yes # advertise this stream?
|
||||||
|
|
||||||
|
# this section describes a streaming connection to a ShoutCast server
|
||||||
|
# there may be up to 8 of these sections, named [shoutcast-0] ... [shoutcast-7]
|
||||||
|
# these can be mixed with [icecast-x] sections
|
||||||
|
[shoutcast-0]
|
||||||
|
bitrate = 96 # bitrate of the mp3 stream sent to the server
|
||||||
|
server = yp.yourserver.com
|
||||||
|
# host name of the server
|
||||||
|
port = 8001 # source port of the ShoutCast server, usually 8001
|
||||||
|
password = hackme # source password to the ShoutCast server
|
||||||
|
name = DarkIce trial
|
||||||
|
# name of the stream
|
||||||
|
url = http://www.yourserver.com
|
||||||
|
# URL related to the stream
|
||||||
|
genre = my own # genre of the stream
|
||||||
|
public = yes # advertise this stream?
|
||||||
|
irc = irc.yourserver.com
|
||||||
|
# IRC info related to the stream
|
||||||
|
aim = aim here # AIM info related to the stream
|
||||||
|
icq = I see you too
|
||||||
|
# ICQ info related to the stream
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue