I have an application that read the stream from a camera (MJPEG) and show it on the form in real time (in a picture box). This is working. This stream reading start when the user click on the button "Start".

What I want to do is that when the user click on a button "Stop", the stream between the button "Start" and "Stop" would be save on disk as a .mpg.

Right now, it write something on the disk, but I can't open it in Windows Media Player.

Here is the code to write the stream

private void ReadWriteStream(byte[] buffer, int start, int lenght, Stream writeStream)
    {
        Stream readStream = new MemoryStream(buffer, start, lenght);
        int bytesRead = readStream.Read(buffer, 0, m_readSize);
        // write the required bytes
        while (bytesRead > 0 && !m_bStopLecture)
        {
            writeStream.Write(buffer, 0, bytesRead);
            bytesRead = readStream.Read(buffer, 0, m_readSize);
        }
        readStream.Close();

    }

Here is the place that call the function. This is in a loop and as I said, the video is playing in the PictureBox.

    // image at stop
Stream towrite = new MemoryStream(buffer, start, stop - start);
Image img = Image.FromStream(towrite);

imgSnapshot.Image = img;

// write to the stream
ReadWriteStream(buffer, start, stop - start, writeStream);

Thanks a lot!

DarkJaff

link|improve this question

Might be because you are not saving the file in the correct format. All files have file formats which include headers and data that describes the file. If you are only saving one section of the stream in bytes you might be messing up the file format and might be missing important data when you save it to disk. That would be my guess. – Mike Webb Dec 7 '10 at 16:32
I tried to copy the entire stream from the camera to file and the same things happend. Any other ideas? – DarkJaff Dec 7 '10 at 17:21
1  
MJPEG is not the same as mpeg (or mpg). Two different codecs. Unless you want to transcode (==loose quality) to mpeg, try to keep is as mjpeg. If you need to contain it, you are better off using Quicktime or AVI than Mpeg. – BlueVoodoo Dec 7 '10 at 20:01
feedback

1 Answer

You need to set the content type on the stream, and include the frame boundry data. I would start by looking at the question MJPG VLC and HTTP Streaming.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.