DF3CB.com :: Software
RemAud - Remote Audio Software
Documentation

RemAud Protocol

RemAud uses only one TCP connection and port. RemAud also uses authentication and enables the user to change codecs at run-time. Therefore a command protocol is needed. The command protocol is "hidden" in the audio stream to be able to save another port and TCP connection.

Each command string is uppercase ASCII and 150 byte long. Each command begins with REMAUD|| followed by a command and ends with ||. The rest of the string is filled with blanks.

The client first sends an authentication request together with the favored codec information:

REMAUD||U:DF3CB||P:TEST||C:PCM8||M:STEREO||B:16||

with U: and user, P: and password, C: and codec, M: and channels (mono or stereo), B: and bits per sample.

If the connecting user is authenticated the server responds with the current or requested codec message:

REMAUD||C:PCM8||M:STEREO||B:16||

If the connecting user couldn't be authenticated the server responds with an information message and disconnects:

REMAUD||I:Invalid user or password||

To request another codec at run-time the client sends a codec message, for example:

REMAUD||C:PCM11||M:MONOO||B:8||

To disconnect the client sends:

REMAUD||D:||

If the server shuts down it sends a disconnect message and disconnects:

REMAUD||D:Server Shutdown||

To perform an echo test the client sends the Echo On REMAUD||E:1|| and Echo Off REMAUD||E:0|| commands.

Back to documentation