2
Answers

Compress and uncompressed video size

Arvind Singh

Arvind Singh

7y
258
1
I need to give an upload video feature in my project. In which to save server i need to compress the video file size before saving it into server.
 
Am using MVC C# for giving this functionality.
 
Kindly help with some recommendation as its an urgent requirement.
 
I tried to search a lot but didn't found anything usefull. 
 
Answers (2)
0
Maen Badwan

Maen Badwan

NA 408 69 7y
The details depend on the format and resolution of the video files you want to upload.
In general, you can convert the video files to a different format with a suitable encoder to reduce the size of the videos before saving them into the server.
You can try using .NET Convert control from LEADTOOLS. The following code shows how you can use the convert control to convert the video file to MP4 format with H264 video compression:
//==============================//
using Leadtools.Multimedia;
//..
ConvertCtrl TestConvert = new ConvertCtrl(true);
TestConvert.SourceFile = @"c:\Test.avi";
TestConvert.TargetFormat = Leadtools.Multimedia.TargetFormatType.ISO;
TestConvert.VideoCompressors.H264.Selected = true;
TestConvert.AudioCompressors.AAC.Selected = true;
TestConvert.TargetFile = @"c:\ResConvert1.mp4";
//==============================//
Note that if you are planning to save these video files directly into database as binary data, it’s better that you save them into the server local drive, and then save the location of each video into the database field.
This should reduce the required time to save/load video into/from the database.
0
Manikandan Murugesan

Manikandan Murugesan

NA 20.5k 98.9k 7y
Refer the following Link : https://www.codeproject.com/Questions/377992/compress-file-before-saving-into-db