Method: GET
Syntax:
http://<servername>/axis-cgi/audio/receive.cgi
There are no valid parameters and values
Example: a Multipart Audio stream
http://myserver/axis-cgi/audio/receive.cgi
5.5.2 Multipart audio data response
When an audio stream is requested/transmitted, the server returns/receives a continuous flow of audio packets.
The content type is "multipart/x-mixed-replace" and each audio packet ends with a boundary string
<boundary>. The MIME type used for the audio transmitted is audio/32KADPCM. The message body contains a
block of binary data.
Return:
HTTP/1.0 200 OK\r\n
Content-Type: multipart/x-mixed-replace;boundary=<boundary>\r\n
\r\n
--<boundary>\r\n
<audio>
where the proposed <boundary> is
myboundary
and the <audio> field is
Content-Type: audio/32KADPCM\r\n
\r\n
<Audio data>\r\n
--<boundary>\r\n
<audio>
Example: Multipart Audio data
HTTP/1.0 200 OK\r\n
Content-Type: multipart/x-mixed-replace;boundary=myboundary\r\n
\r\n
--myboundary\r\n
Content-Type: audio/32KADPCM\r\n
\r\n
<Audio data>\r\n
--myboundary\r\n
Content-Type: audio/32KADPCM\r\n
\r\n
<Audio data>\r\n
--myboundary\r\n
Content-Type: audio/32KADPCM\r\n
\r\n
<Audio data>\r\n
--myboundary\r\n
.
.
.
Comments to this Manuals