2
I use the Microsoft Encoder to transmit a video via protocol MMS.
The video is streamed by streaming. It is the footage of an event being streamed synchronously to the network (for the time being locally).
It is not a video that is on the server, but a transmission that clients will capture from the point where they connect on the page above.
I saw some examples of the use of HTML 5 in Razor for playback, but only for videos from the server not for receiving mms resources from the network.
<video controls="controls" height="320" width="480">
<source src="/api/videos/mp4/OMundoUmMoinho" type="video/mp4">
</video>
This example I saw in ASP.NET Web API / HTML5 - Streaming audio and video asynchronously
The resource is being transmitted continuously, the address for now is mms://localhost:8080
Until then I catch the transmission using the program VLC Media Player through function Abrir Fluxo de Rede in the file menu.
Since then I thank.
The example is for Web API, which in theory is almost the same as in ASP.NET MVC. What would be the doubt?
– Leonel Sanches da Silva
Instead of playing a video stored in the server, as in the example; I want to play a streaming stream that is being streamed by the mms protocol
– Marcelo Nascimento