how to automatically create a folder and compress it in vb .net 2008?
-
hi, I made a program that record a video from a webcam in vb .net but my problem is that my recorded video have a extension name of .avi and its consuming all my hard disk space. Is there any other way to make my videos size smaller?
-
hi, I made a program that record a video from a webcam in vb .net but my problem is that my recorded video have a extension name of .avi and its consuming all my hard disk space. Is there any other way to make my videos size smaller?
This depends on what you're using to capture the video and save it to the AVI. It has to expose some methods for changing the encoding graph so you can add/change codecs to add compression to it. From the sounds of it, you're saving each frame of video completely uncompressed, which will, obviously, take up a LOT of space.
A guide to posting questions on CodeProject[^]
Dave Kreskowiak Microsoft MVP Visual Developer - Visual Basic
2006, 2007 -
This depends on what you're using to capture the video and save it to the AVI. It has to expose some methods for changing the encoding graph so you can add/change codecs to add compression to it. From the sounds of it, you're saving each frame of video completely uncompressed, which will, obviously, take up a LOT of space.
A guide to posting questions on CodeProject[^]
Dave Kreskowiak Microsoft MVP Visual Developer - Visual Basic
2006, 2007 -
hi can u please tell me about the code u use to done this task. i m working on the same. please tell me. thanks in advance.
-
I'm just using a 2.6 mega pixel webcam. It really take up a LOT of space. Just imagine that a 1 min. video will take up a 290 memory space. Can you tell me how can I compress the video?
Like I already said, that's up to the video capture library that you're using. It has to give you the options to compress the video. If it doesn't, you'll have to use a different library that does, such as Microsoft's Media Encoder 9 SDK.
A guide to posting questions on CodeProject[^]
Dave Kreskowiak Microsoft MVP Visual Developer - Visual Basic
2006, 2007