开发者

Help to set up RTSP Stream Server in C# .Net [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and canno开发者_如何学JAVAt be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center. Closed 10 years ago.

I am not a socket programmer, but I need to develop a RTSP streaming server in c# .net. I am developing a blackberry application, but it does not have native video calling support. So to fulfill my requirement, I want to create an intermediate streaming server, that will capture my video data (live bytes) from one BB device, and send it to another BB device. This will be live streaming, just like video calling. But I have no idea on how to implement it in c# .net. I have tried to google for some code, but didn't get any useful links. Please suggest if I am not on the right track. I am asking for c# .net as I feel it a bit easier to build for someone newbie like me.

Thanks in advance.


RTSP is going to be a very difficult choice for this. It requires coordinating a TCP control socket and multiple separate channels of UDP data.

You're much better off with any variant of HTTP Video or RTMP or RTMPF. HTTP Video has no single standard--just break up video and send in chunks. Easy. RTMP is used with Flash but can be used separately. There arr sample apps in .NET and Java. RTMPF is also used by Flash but is UDP based instead of TCP and is Peer-to-Peer focused. I think there are also sample implementations available.

Sam

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜