Using ffmpeg to convert video file
     Using FFmpeg to convert video file        Table of Contents    1 Some basic concept about digital video file  2 what is FFmpeg?  3 how FFmpeg works inside?  4 convert MOV file format into mp4 format  5 what's more       1  Some basic concept about digital video file   There are many kinds of Video file format including MOV, mp4, Flv, AVI, which act as the containers in which video data is stored. And Video data is encoded by codecs.  In other words, Video file format is just a container, and Video codecs are used to encode or compress the video data. The anatomy of video file including following parts:   A container type: AVI, MOV, mp4, FLV…  The video and audio signal: the data stored in the container.  Codec: Codec refer to the software that is used to encode and decode the video signal   The characteristics of a video signal:   Frame size: the pixel dimension of the frame  The Aspect ratio: the ratio of width to height  Frame rate: the rate of frames per second  Bitrate: th...