<html><head></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><div><blockquote type="cite"><div><div style="color: rgb(0, 0, 0); background-color: rgb(255, 255, 255); font-family: 'times new roman', 'new york', times, serif; font-size: 12pt; position: static; z-index: auto; "><div style="RIGHT: auto"><span style="RIGHT: auto">while I am trying to execute TestMP3Streamer.exe it doesn't find any RTSP Server and goes into following condition and display the message "Failed to create RTSP ...."</span></div>
<div style="RIGHT: auto"><span style="RIGHT: auto"></span> </div>
<div style="RIGHT: auto"><span style="RIGHT: auto">if (rtspServer == NULL) {<br>    *env << "Failed to create RTSP server: " << env->getResultMsg() << "\n";<br>    exit(1);<br>  }</span></div></div></div></blockquote><div><br></div></div>The problem here is probably that you do not have permission to start up the server using the default RTSP port number of 554 (because on Unix systems (including Linux), you need to be "root" to do that).<div><br></div><div>To overcome this, either run the server as "root", or else make it use a different port number - e.g., the 'alternative' RTSP port number: 8554 - by doing:</div><div><span class="Apple-tab-span" style="white-space:pre"> rtspServer = RTSPServer::createNew(*env</span>, 8554);</div><div>instead of just</div><div><span class="Apple-tab-span" style="white-space:pre">        rtspServer = RTSPServer::createNew(*env</span>);</div><br><br><div apple-content-edited="true">
<span class="Apple-style-span" style="border-collapse: separate; color: rgb(0, 0, 0); font-family: Helvetica; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-align: -webkit-auto; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; font-size: medium; "><span class="Apple-style-span" style="border-collapse: separate; color: rgb(0, 0, 0); font-family: Helvetica; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-align: -webkit-auto; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; font-size: medium; ">Ross Finlayson<br>Live Networks, Inc.<br><a href="http://www.live555.com/">http://www.live555.com/</a></span></span>
</div>
<br></body></html>