Click here to Skip to main content
16,020,626 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hi sir
i trying to reduce video file size
but atill not find any solution please help me

What I have tried:

pleasegime me the solution for reducing videoo file size
Posted
Updated 30-Jul-16 20:32pm
Comments
Mehdi Gholam 31-Jul-16 0:18am    
You will have to re-encode it.

HandBrake is an open-source Win app written in .NET that supports a wide variety of compression standards.

Site: [^].

On Git-Hub: [^].

You can use HandBrake from the command line: [^].

However, you should understand that video compression is a very complex, deep, technical process; software like HandBrake has an amazing number of options, and trying to use it from the command line, or within your own .NET app, would, imho, require extremely advanced technical expertise in both video formats, codecs, and .NET programming.
 
Share this answer
 
To reduce a video file size you need to change its resolution: which means transcoding it.
Anything to do with Video work is a complicated job in any language - you are best off to use an external program such as ffmpeg which will do it for you via Process.Start and providing the command line arguments.

You can get ffmpeg here: Download FFmpeg[^] and the command line switches are described here: ffmpeg Documentation[^] but don't expect this to be trivial reading!
You may also need to install a codec pack on your computer to get it all to work.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900