<html><head></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><div>No, unfortunately there's no general 'frame duplicator' mechanism in our library.</div><br><div><br><blockquote type="cite"><div>Now, I known I can use a FileSink for save the media data to file. <br><br>RTPSource -> FileSink<br><br>But, how to send to the live player simultaneously? Should I make a Filter class, so the chain becomes:<br><br>RTPSource -> Filter -> RTPSink(to player)<br></div></blockquote><div><br></div>Yes, the simplest thing to do here would be to write your own filter class (a subclass of "FramedFilter") that copies input frames to the output, but also writes them to a file.  The "writing to a file" would be done directly (i.e., using "fwrite()"), rather than using a "FileSink").</div><div><br></div><div><br><blockquote type="cite"><div>If I should do so, how about send to 2 and more live player</div></blockquote><div><br></div></div>The simplest way to do this is just to use multicast.  I.e., send the frames out just once (using a single "RTPSink" object, but do so using an IP multicast address).  (E.g., our "testRelay" demo application does something like this.)<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>