FFmpeg - command line
A complete, cross-platform solution to record, convert and stream audio and video.
To work with multimedia we can use the AMAZING tool/library called FFmpeg. Chances are you already know/use it directly or indirectly (do you use Chrome?).
It has a command line program called ffmpeg
, a very simple yet powerful binary. For instance, you can convert from mp4
to the container avi
just by typing the follow command:
- $ ffmpeg -i input.mp4 output.avi
We just made a remuxing here, which is converting from one container to another one. Technically FFmpeg could also be doing a transcoding but we’ll talk about that later.
当前内容版权归 leandromoreira 或其关联方所有,如需对内容或内容相关联开源项目进行关注与资助,请访问 leandromoreira .