Effective video stream compression in C# -


i looking effective way compress real time video stream. in project, streaming seems important because system send , receive both audio , video streams @ same time. considering using h261 or h263. how can achieve such compression ratio using c#?

ps found called h323plus, not know how call library because written in c++.

if want real-time streaming on udp both audio , video stream can use directshow api (if you're targeting windows).

http://msdn.microsoft.com/en-us/library/windows/desktop/dd375454(v=vs.85).aspx

you find .net wrapper directshow here

http://directshownet.sourceforge.net/

you find more samples on codeproject.com, of them use wrapper

http://www.codeproject.com/kb/audio-video/#directshow

if plan on targeting windows 7 , newer only, want use windows media foundation api

http://msdn.microsoft.com/en-us/library/windows/desktop/ms694197(v=vs.85).aspx


Comments

Popular posts from this blog

Why does Ruby on Rails generate add a blank line to the end of a file? -

keyboard - Smiles and long press feature in Android -

node.js - Bad Request - node js ajax post -