How can I write an MJPEG stream to disk in C#? (AVI, MPEG or OGG)
Asked
Active
Viewed 4,089 times
2 Answers
1
You create a FileStream
that will be the file you want to write to and use the MJPEG stream as an input to write to this stream.

Oded
- 489,969
- 99
- 883
- 1,009
1
A library for reading/decoding MJPEG streams was recently released in C#, maybe it will help. You can find it here: http://channel9.msdn.com/coding4fun/articles/MJPEG-Decoder

Peter
- 9,643
- 6
- 61
- 108