ffmpeg 一些用过的命令

1、查看视频信息

ffprobe filename.mp4

常见分辨率:1920x1080             1280x720              640x360

2、修改视频分辨率

ffmpeg -i video_1920.mp4 -vf scale=640:360 video_640.mp4 -hide_banner

scale=640:360为修改后的分辨率

3、更改视频宽高比

ffmpeg -i video_1920.mp4 -vf scale=640:480,setdar=4:3 video_640x480.mp4 -hide_banner

setdar为指定的宽高比

4、合并多个视频

file intro.mp4
file video.mp4
file outtro.mp4

 利用txt文件来合并视频,

ffmpeg -f concat -i "file.txt" -vcodec copy -acodec copy "endfile.mp4"

 

上一篇:Halide应用开发


下一篇:Codeforces #640 div4 F~G (构造二连弹)