FFmpeg命令集
视频转换成yuv
# -ss : 开始时间 # -t : 持续时间 ffmpeg -i intput.mp4 -ss 00:00:00 -t 00:00:10 output.yuv
播放yuv
ffplay -f rawvideo -video_size 700x1240 output.yuv
获取视频总帧数
ffprobe -v error -count_frames -select_streams v:0 -show_entries stream=nb_read_frames -of default=nokey=1:noprint_wrappers=1 input.mkv
设置封面
ffmpeg -i input.mp4 -i cover.jpg -filter_complex [1:v]scale=720:1080[ovrl],[0:v][ovrl]overlay=enable='between(n\,0\,1)',fps=fps=25 output.mp4
相关推荐
dingwun 2020-11-16
wangdaren 2020-08-15
wqiaofujiang 2020-07-05
PGzxc 2020-07-04
ShoppingChen 2020-06-25
cherayliu 2020-06-17
83096129 2020-06-08
83096129 2020-06-08
PGzxc 2020-06-01
ShoppingChen 2020-05-29
cherayliu 2020-05-11
ShoppingChen 2020-05-11
83096129 2020-05-10
PGzxc 2020-05-07
cherayliu 2020-04-27
cherayliu 2020-04-11