My question is for an experienced developer with ffmpeg.
Would it be possible to compress a video with ffmpeg?
What is the difference between encoding and decoding?
Thanks in advance!
|
My question is for an experienced developer with ffmpeg. Would it be possible to compress a video with ffmpeg? What is the difference between encoding and decoding? Thanks in advance! |
|||||
|
|
Yes it is possible to compress a video with ffmpeg (though you're almost always going to lose quality in the process). Encoding means to pass video (usually in some raw format) through an encoder, converting it to some particular video format (which then gets put inside a container file format, along with the audio, and possibly extra things like subtitles). Decoding is do to the opposite of this - to take video in some format from a file, and convert it to raw bits that can be displayed on the screen. (Is this really a programming question though? I suppose it might be!) |
|||
|
|
|
How to compress AVI and MP4 videos files using FFmpeg under Ubuntu or any Debian-based system. The commands given below will help you reduce size of video files ranging from 40% to 70% with a slight loss of quality. AVI Video Compression Via the Terminal cd to the folder containing the avi file and run this command:
Replace "input.avi" with the name of your avi video. The compressed video will be created in the current folder having this name: output.avi. MP4 Video Compression Using the Terminal cd to the target folder and run this command:
Replace "input.mp4" with the name of your mp4 video. The compressed video will be saved in the current folder having this name: output.mp4. |
|||
|
|