<system> <gui> <autostart /> <qt /> <decoder /> <mplayer /> <gstreamermpeg /> </gui> </system>
And the invidiual values mean:
autostart
controls whether the user must start two programs or only one. In case of autostart, which is the default, the program that is started with fork a separate front-end process. This approach is convenient. If autostart is disabled, the user can start the client part for the interaction separately from the client part of decoding, and debug them separately.qt
is a boolean value. If it is true, which is the default, it indicates that the client front-end should be the QT GUI. If it is false, the front-end is a simple command line tools that specifies the URL with the --url command line parameter and allows no further interactiondecoder
is a boolean value. If it is true, which is the default, the received data is decoded and displayed. For measurements this is not necessarily required, and setting is to false is useful for that case.mplayer
allows the use of the mplayer MPEG player via a UDP loopback connection on the receiver side. This is an instable case study.gstreamermpeg
allows the use of a gstreamer MPEG demux and via display pipe that is directly connected on the receiver side. This is an instable case study.