其他分享
首页 > 其他分享> > ffmpeg 一些用过的命令

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"

 

标签:视频,ffmpeg,640,命令,mp4,video,file,用过
来源: https://www.cnblogs.com/wulingchao/p/13691744.html