如何通过网络为 Silverlight 视频/音频会议编写自己的实时传输协议?
你好 我使用 TCP 创建了一个用于音频/视频会议的 Silverlight 应用程序。但由于通过网络传输流字节时速度较慢。当谷歌搜索情况时,我发现没有任何对实时传输协议的支持,例如silverlight中的RTP。那么,任何人都可以指导我或参考一些链接来执行此任务吗? 提前致谢 任何建议或帮助将不胜感激...
Hi
I have created a Silverlight Application for audio/video conferencing using TCP. But due to slow speed during tranferring stream bytes over the network. While google the situation i find that there is no any support for real time transport protocols, such as RTP in silverlight. So, can anyone guide me or refer some links to perform this task?
Thanks in advance
Any Suggestion or Help will appreciated...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否以原始字节发送流?您是否尝试过发送压缩的字节流并在另一端将其解压缩?这可能会加快传输过程,但会导致客户端更加努力地解压缩它。
Are you sending the stream in raw bytes? Have you tried sending a compressed byte stream and decompressing it at the other end? This may speed up the transfer process but would cause the client to work harder to decompress it.