Pure C # Silverlight Video Encoding?

Is there any Pure C # Silverlight video encoding lib?

By video I mean not only an image compressor, but also an audio compressor ...

So to speak, I'm looking for some kind of library not only for compression, but also for synchronization, etc. .... so to speak, I give her a webcam that gives me a participant!)

+6
c # encoding video silverlight
source share
2 answers

Of course, you will not want to do this in safe code if you have a lot of buffer memory, since the encoder will start slowly slowly.

One option is to work with higher permissions, and then you can interact with external COM packages - see http://forums.silverlight.net/forums/p/156112/350144.aspx for some useful links

Here is a link from stackoverflow to a common problem that says almost the same thing - Using native dlls in C # Com shell and using dlls in silverlight

If you can create a C # wrapper around calls in any custom encoding library of your choice, then you can put the wrapper assembly in the GAC and you should be good to go - this, of course, means you need an extra installation step to get this build in gac, which is beyond the β€œnormal” Silverlight experience.


To simplify this separation, we introduced what we call simple sandboxing APIs in the .NET Framework 2.0, which create each application domain with a given set of permissions for its sandbox and a complete list of reliable assemblies that are not part of the global assembly cache (GAC ), since all assemblies in the GAC are already fully trusted.


taken from http://msdn.microsoft.com/en-us/magazine/cc765416.aspx - given, but I think it’s still accurate

+1
source share

As of February 15, 2010 - there seems to be no built-in way to do this in Silverlight.

Here is a thread that discusses this issue .

Rene Schulte has an example, EdgeCam Shots - Saving Silverlight 4 snapshots with a JPEG webcam that saves the webcam stream as sequential JPEG images.

+1
source share

All Articles