Advertisement
spookybathtub

darkice.cfg

Nov 24th, 2011
335
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.86 KB | None | 0 0
  1. # sample DarkIce configuration file, edit for your needs before using
  2. # see the darkice.cfg man page for details
  3.  
  4. # this section describes general aspects of the live streaming session
  5. [general]
  6. duration = 0 # duration of encoding, in seconds. 0 means forever
  7. bufferSecs = 5 # size of internal slip buffer, in seconds
  8. reconnect = yes # reconnect to the server(s) if disconnected
  9. realtime = no
  10.  
  11. # this section describes the audio input that will be streamed
  12. [input]
  13. device = jack # OSS DSP soundcard device for the audio input
  14. sampleRate = 44100 # sample rate in Hz. try 11025, 22050 or 44100
  15. bitsPerSample = 16 # bits per sample. try 16
  16. channel = 2 # channels. 1 = mono, 2 = stereo
  17.  
  18. # this section describes a streaming connection to an IceCast2 server
  19. # there may be up to 8 of these sections, named [icecast2-0] ... [icecast2-7]
  20. # these can be mixed with [icecast-x] and [shoutcast-x] sections
  21. [icecast2-0]
  22. bitrateMode = cbr # average bit rate
  23. format = mp3 # format of the stream: ogg vorbis
  24. bitrate = 128 # bitrate of the stream sent to the server
  25. quality = 1.0
  26. server = localhost
  27. # host name of the server
  28. port = 80 # port of the IceCast2 server, usually 8000
  29. password = ******** # source password to the IceCast2 server
  30. mountPoint = listen # mount point of this stream on the IceCast2 server
  31. name = Chapman Radio Live Broadcast
  32. # name of the stream
  33. description = normal quality (128kbps mp3)
  34. # description of the stream
  35. url = http://www.chapmanradio.com
  36. # URL related to the stream
  37. genre = awesome # genre of the stream
  38. public = yes # advertise this stream?
  39. # localDumpFile = dump.ogg # local dump file
  40.  
  41. [icecast2-1]
  42. bitrateMode = cbr # average bit rate
  43. format = mp3 # format of the stream: ogg vorbis
  44. bitrate = 64 # bitrate of the stream sent to the server
  45. quality = 1.0
  46. server = localhost
  47. # host name of the server
  48. port = 80 # port of the IceCast2 server, usually 8000
  49. password = ******** # source password to the IceCast2 server
  50. mountPoint = listen_low # mount point of this stream on the IceCast2 server
  51. name = Chapman Radio Live Broadcast (low)
  52. # name of the stream
  53. description = low-bandwidth (64kbps mp3)
  54. # description of the stream
  55. url = http://www.chapmanradio.com
  56. # URL related to the stream
  57. genre = awesome # genre of the stream
  58. public = yes # advertise this stream?
  59. # localDumpFile = dump.ogg # local dump file
  60.  
  61. [icecast2-2]
  62. bitrateMode = vbr # average bit rate
  63. format = mp3 # format of the stream: ogg vorbis
  64. bitrate = 256 # bitrate of the stream sent to the server
  65. quality = 1.0
  66. server = localhost
  67. # host name of the server
  68. port = 80 # port of the IceCast2 server, usually 8000
  69. password = ******** # source password to the IceCast2 server
  70. mountPoint = listen_high # mount point of this stream on the IceCast2 server
  71. name = Chapman Radio Live Broadcast (high)
  72. # name of the stream
  73. description = high-quality (256kbps VBR mp3)
  74. # description of the stream
  75. url = http://www.chapmanradio.com
  76. # URL related to the stream
  77. genre = awesome # genre of the stream
  78. public = yes # advertise this stream?
  79. # localDumpFile = dump.ogg # local dump file
  80.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement