Diogo Carvalho
Diogo Carvalho

Reputation: 3

C# live video streaming and PHP client

I was wondering if it's possible to create an application in C# to streaming video to a php client. Someone out there have already try such thing or can indicate where to find resources to do that?

Upvotes: 0

Views: 3507

Answers (2)

TomTom
TomTom

Reputation: 62157

What do you mean by a PHP client?

Last time I checked, PHP was a PURE server side technology, and the "client" is a web browser that does not care about what the server uses but interprets the PHP output which are essentially strings in HTML and JavaScript.

So, what you want to achieve having a video decoded on the server? Send them as JPG images to the client?

Upvotes: 4

RahulOnRails
RahulOnRails

Reputation: 6542

You just take the reference of this link. You will get the idea to resolve your problem.

UDP Streaming transfer from C# application to PHP webpage

Upvotes: 1

Related Questions