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
you find more samples on codeproject.com, of them use wrapper
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
Post a Comment