Several input modules are available, depending on the platform, drivers and libraries available. The general layout is defined as
<input> <module>module name</module> <param name="name1">value</param> <param name="name2">value</param> <param name="name3">value</param> </input>
For live input you may want to look into various resources on the web for information on sound input. You may find that ALSA for instance supports a particular soundcard better than the Open Sound System.
<module>oss</module> <param name="rate">44100</param> <param name="channels">2</param> <param name="device">/dev/dsp</param> <param name="metadata">1</param> <param name="metadatafilename">/home/ices/metadata</param>
This module is for reading live input from the Open Sound System drivers, often found on linux systems but are available on others. This will read audio from the DSP device in a format specified in the parameters provided.
The following can be used to configure the module
The name of the file to open and read the metadata tags from, with this parameter missing standard input is read. Using a file is often the better approach. When using the file access the procedure is usually to populate the file contents then send a SIGUSR1 to the IceS process.
The format of the file itself is a simple one comment per line format, below is a trivial example of the file, other tags can be used but players tend to only look for artist and title for displaying. The data must be in UTF-8 (this is not checked by ices, however).
artist=Queen title=We Will Rock You
The Advanced Linux Sound Architecture (ALSA) is a completely different sound system on linux but provides OSS compatability so the OSS driver should work with it as well. To use ALSA natively a separate module is used
<module>alsa</module> <param name="rate">44100</param> <param name="channels">2</param> <param name="device">hw:0,0</param> <param name="periods">2</param> <param name="buffer-time">500</param> <param name="metadata">1</param> <param name="metadatafilename">/home/ices/metadata</param>The parameters to ALSA are mostly the same for OSS, as it performs the same task, ie captures audio from the DSP.
This is the device name as used in ALSA. This can be a physical device as in the case of "hw:0,0" or a virtual device like one with dsnoop.
This specifies how many interrupts will be generated (default: 2)
The size of the buffer measured in mS (default 500)
The Sun Solaris DSP input is similar to OSS. It allows for reading from a soundcard on a Sun Solaris UNIX. OpenBSD also has a sound driver that is similar to solaris and as such should be able to use this module.
<module>sun</module>
The parameters are the same as the OSS and ALSA modules.
<module>stdinpcm</module> <param name="rate">44100</param> <param name="channels">2</param> <param name="metadata">1</param> <param name="metadatafilename">/home/ices/metadata</param>
This module should always be available, and as you can see the parameters are almost the same except for the device. The PCM audio comes from the standard input so it can be generated from some external application feeding into a pipe.
As it's raw PCM being fed in, it's impossible to determine the samplerate and channels so make sure the stated parameters match the incoming PCM or the audio will be encoded wrongly.
The playlist module is used to get audio from some pre-encoded Ogg Vorbis files. IceS currently checks to see if the same file gets played in succession and skips it, this means that having a playlist repeat with only one Ogg file listed won't work. The method of file selection is determined by the playlist type. The current types are basic and script.
<param name="type">basic</param> <param name="file">/path/to/playlist</param> <param name="random">0</param> <param name="once">0</param> <param name="restart-after-reread">1</param>
<param name="type">script</param> <param name="program">/path/to/program</param>
The RoarAudio module is used to get audio from a RoarAudio Sound Server. This module supports getting both already encoded and raw audio from the sound server. It also allows meta data to be read from the sound server or an file the same way the Open Sound module does.
<module>roar</module> <param name="rate">44100</param> <param name="channels">stereo</param> <param name="codec">ogg_vorbis</param> <param name="aiprofile">default</param> <param name="dir">monitor</param> <param name="device">/tmp/roar</param> <param name="server">home::</param> <param name="metadata">file</param> <param name="metadatafilename">/home/ices/metadata</param> <param name="plugin">helloworld text="Hello ices2 users!"</param>
The parameters are similar to the of the other modules. For the audio parameters (rate, channels, codec) the values from libroar's audio info profile "default" are used (normally 44100, 2, pcm_s). The following can be used to configure the module: