Olter
Olter

Reputation: 1139

A compatible with DirectShow technology video compressor needed

I’m developing an application, which allows to record video from web camera. (using visual studio 2008, c#)

The required compress ratio is approximately 10 secs = 1 mb. I found the only one, that suits this: the one from DivX Codec Pack, but it seems to be not free. Or, may be, not, I’m not sure: it installs via DivXInstaller, which downloads many garbage, that I don’t need, and at DivX Control Panel there is a label: DivX Codec, trial, 15 days left. And this label isn’t changing for more than two weeks…

The other good alternative is VP40® Compressor. Compress ratio is about 1 sec to 1 mb. But it has some strange problems with Windows XP, and I cannot understand yet, what’s wrong with it.

There are the questions I have now:

  1. Is there a good installer for DivX Codec Pack, which will install only this pack, without adding 200 mb weight garbage?
  2. Are there other good video compressors, compatible with DirectShow? The ones, that I have by default (like Microsoft Video 1, DV Video Encoder, etc.) either have bad compress ration, or have a terribly bad recorded video quality.
  3. Well, of course, a free compressor is preferred.

P.S. Sorry for my bad English.

A piece of code:

    // the part of method to record video

capture = new Capture(filters.VideoInputDevices[VCB.SelectedIndex], filters.AudioInputDevices[ACB.SelectedIndex]);
    // VCB & ACB are the combobox for video & audio capture devices
capture.VideoCompressor = filters.VideoCompressors[CCB.SelectedIndex];
    // that's the video compressor, that is used
    //and then:
    try
                    {
                        capture.PreviewWindow = panelVideo;
                        Log.CreateLogFiles("Video panel initialized");
                    }
                    catch (Exception ex) { Log.CreateLogFiles(ex); }
                    capture.Filename = "Somestring";
                    capture.Start();

Upvotes: 1

Views: 1591

Answers (2)

yms
yms

Reputation: 10418

Have you tried xvid?

From wikipedia:

Xvid is a primary competitor of the DivX Pro Codec. In contrast with the DivX codec, which is proprietary software developed by DivX, Inc., Xvid is free software distributed under the terms of the GNU General Public License

Upvotes: 1

Dmitry Shkuropatsky
Dmitry Shkuropatsky

Reputation: 3965

You can consider using Windows Media format, if Windows-only solution is sufficient. There may be Mac support though. Adding WM ASF Writer Filter to DirectShow filter graph will render the output to a Windows Media file. The bitrate/quality is specified via built-in or user-defined profiles.

Windows Media Encoder from Windows Media Encoder 9 Series SDK is a UI tool that can be used to fine-tune the compression parameters, check the quality visually etc.

Upvotes: 2

Related Questions