VCX. Remote lecturer |
||
Describes how to distribute audio stream being received from a remote source among several subscribers using Visual Studio (C#, Visual Basic .NET, Visual Basic 6.0 or Visual C++ 6.0). Server downloads Client downloads IntroductionRemote lecturer demo illustrates the one speaker - many listeners approach which implies that one client (speaker) is a provider of the audio stream and all the others (listeners) are consumers. A client that works in the speaker mode connects to Remote Lecturer Server, which in turn distributes audio to the listeners. Listeners can connect and disconnect at any time. Server automatically assigns the next available channel for a new Listener.
Server setupSpecify a protocol/port for the speaker and listener sides. Press the Start/Stop buttons to start/stop the server. Client setupSpecify whether the client works in either speaker or listener mode. Select a sound card. Enter the server IP address and select the corresponding protocol/port. Press the Connect/Disconnect buttons to start/stop your session. Programming background1) Server uses two IpServer components: IpServer (speaker) > IpServer (listeners). The Speaker IpServer component receives audio from the speaker side and passes it to the Listener IpServer component. The Listener IpServer component sends audio to all listener clients connected to it. 2) Client uses the MediaGate component. Set MediaGate.Proto, MediaGate.Port properties and call MediaGate.Connect method to connect to the Remote Lecturer server. |