Captured video size is too big
-
My requirement is Capturing Video from web cam and saving it in .avi format. I am currently using DirectShowNet Library, But the captured video size is too big. For 10 sec video it takes 70 MB storage size. I have tried other web cam libraries but nothing works. I have tried AForge, EMGU, DirectX and some other libraries, but the problem still exists (video size is too big). If you have ever worked on this type of problem, please help me or suggest me for some other libraries.
___ ___ ___
|__ |_| |\ | | |_| \ /
__| | | | \| |__| | | / -
My requirement is Capturing Video from web cam and saving it in .avi format. I am currently using DirectShowNet Library, But the captured video size is too big. For 10 sec video it takes 70 MB storage size. I have tried other web cam libraries but nothing works. I have tried AForge, EMGU, DirectX and some other libraries, but the problem still exists (video size is too big). If you have ever worked on this type of problem, please help me or suggest me for some other libraries.
___ ___ ___
|__ |_| |\ | | |_| \ /
__| | | | \| |__| | | /Raw Video Data has it's cost (that's the big size on the disk it eats ;)) You'll either need to a) reduce the resolution you're recording a video or b) encode the video with a codec to reduce the size. I haven't done something like that programatically myself yet. However already used some converters which are available for free on the internet to convert the videos. (As far as I remember you should be even able to use the windows live movie maker ;) )
-
Raw Video Data has it's cost (that's the big size on the disk it eats ;)) You'll either need to a) reduce the resolution you're recording a video or b) encode the video with a codec to reduce the size. I haven't done something like that programatically myself yet. However already used some converters which are available for free on the internet to convert the videos. (As far as I remember you should be even able to use the windows live movie maker ;) )
Yes, I think you are right. I need to encode/compress the RAW Video data into proper format. Can you please suggest any library for doing the same. Thanks
___ ___ ___
|__ |_| |\ | | |_| \ /
__| | | | \| |__| | | / -
Yes, I think you are right. I need to encode/compress the RAW Video data into proper format. Can you please suggest any library for doing the same. Thanks
___ ___ ___
|__ |_| |\ | | |_| \ /
__| | | | \| |__| | | /As I've said. I haven't done it myself with a library myself. Maybe have a look at this question here: video compression in c#[^]
-
As I've said. I haven't done it myself with a library myself. Maybe have a look at this question here: video compression in c#[^]
OK, I found a converter named "FFMPEG" and working on it. BTW Thanks.
___ ___ ___
|__ |_| |\ | | |_| \ /
__| | | | \| |__| | | /