Is there any way how to reduce the size of video?
In php I use this:
$result = exec("avconv -i $file1 -vcodec libx264 -acodec aac -strict experimental $file2");
Unfortynately, all produced videos have the same size as originals or are more bigger.
1) First of all I want to reduce dimensions of all videos: width: 750px, height: auto. Is it possible?
2) Is there some way how to reduce the quality a little bit? Of course, I don't want blurry videos but in some websites I see that a good quality 15 minutes videofile have a size something like 50 MB. My videos of 1 minute have the same size.