broadcasting

How to implement live video broadcasting in C#?

Hi, I want to plug a live video broadcasting facility to a website. I'm planning to use silverlight and C# but I'm very newbie in this topic. What is the best way to do this? Thanks in advance. Update: I have a camera. I want it to capture it and show on my website. Live. But I have no idea about what I must do inside. Tell me every...

BroadCasting

Ok in order to broadcast, I have created a socket: notifySock = new Socket(AddressFamily.InterNetwork, SocketType.Dgram, ProtocolType.Udp); And to send the hostname of my computer to all other computers connected to the same lan, I am using the send(Byte[] buffer) method: notifySock.Send(hostBuffer); hostBuffer contains the hostn...

Receiving datagrams sent as a broadcast message by a remote host

I need to receive datagrams that are sent as a broadcast message by remote host connected on the same lan. I am using UDPClient but have no idea which method to use.There is a method UDPClient.Receive but that requires as parameter a specific IPEndPoint which is obviously not wanted since it is a broadcast message that I need to receive...

Broadcasting

Could anyone please provide me with the code or link to send and receive broadcast messages if possible using UDP? I have been stuck in a problem and hope if u guys could help me resolve it. Thanks ...

sending and receiving broadcast messages

Guys I need some help here.. I am doing a project in c# where the data needs to be sent as a datagram and receive data too which is broadcast. The following is the code: public void StartUdpListener(Object state) { receivedNotification = udpServer.Receive(ref remoteEndPoint); notificationReceived = Encoding.ASCI...

Testing Broadcasting and receiving messages

Guys am having some difficulty figuring this out: I am trying to test whether the code(in c#) to broadcast a message and receiving the message works: The code to send the datagram(in this case its the hostname) is: public partial class Form1 : Form { String hostName; byte[] hostBuffer = new byte[1024]; public Form1() { ...

Broadcast Audio to web site

I am looking for learning materials , examples , learning what I need to broadcast from a pub Audio Broadcast directly to Web site. ...

BroadCasting in asp.net application

do anyboady can provide me that what are methods available to implement broadcasting of videos in asp.net application to be develop in .net 3.5 [C#]. database is sql server 2008 ...

Broadcast live video from web-cam via plug-in

Hello guys! Could you please suggest me what kind of software should I use to broadcast live video from webcam? Web-cam is connected via USB to my server. I want to broadcast video from my webcam on my web-page (HTML, ASP.NET - doesn't matter). I don't want to develop video broadcasting from the beginning - it takes a lot of time to impl...

Audio Broadcasting

I want to do an i-phone application for broadcast audio LIVE over the internet..Anyone please guide me... ...