Skip to content Skip to sidebar Skip to footer

Converting Raw Frames Into Webm Live Stream

I have an ASP.NET application with the following set up: A camera that captures raw RGB frames at a resolution 656x492 These frames are processed in my C# code (with some sim

Solution 1:

Depending on what you can do on the server (outside of deploying a web app), you might consider writing your buffer into a pipe, then use ffmpeg running in the background to create your stream from it with something like -f rawvideo -pixel_format rgb24 -video_size 656x492 as input parameters.

Solution 2:

The WebM Project offers DirectShow filters for playing and encoding WebM

We provide DirectShow filters for playing and working with WebM on Windows. Once the filters are installed on your system, applications that use the DirectShow framework (such as Windows Media Player, and others) will be able to play and encode WebM media

There is also a FFmpegInterop Microsoft initiative which uses the FFmpeg multimedia framework.

Post a Comment for "Converting Raw Frames Into Webm Live Stream"