FFMPEG 缩放、缩放和连接过滤器
FFMPEG scale, zoom, and concat filter
我正在使用 ffmpeg android 来制作 mp4 格式的视频。我无法让这个命令在 FFMPEG 中工作,基本上我试图添加两个图像,缩放它们,添加缩放效果,最后将结果连接到一个视频文件中。我做过这样的事情:
ffmpeg
-t 8 -i image1.png
-t 8 -i image2.png
-filter_complex
[0:v]scale=720:720[scl1]; [1:v]scale=720:720[scl2];
[scl1]zoompan=z=if(lte(zoom, 1.0), 1.55, max(1.001, zoom - 0.0010)):d=205, fade=t=out:st=7:d=1[v0];
[scl2]zoompan=z=if(lte(zoom, 1.0), 1.55, max(1.001, zoom - 0.0010)):d=205, fade=t=in:st=0:d=1,fade=t=out:st=7:d=1[v1];
[v0][v1]concat=n=2:v=1:a=0, format=yuv420p[v] -map [v] outputVideo.mp4
修改这个命令有一段时间了,但仍然无法正常工作,我得到了错误:
Input link in1:v0 parameters (size 1280x720, SAR 0:1) do not match the corresponding output link in0:v0 parameters (1280x720, SAR 45:31)
[Parsed_concat_7 @ 0xf0d77600] Failed to configure output pad on Parsed_concat_7
使用
ffmpeg
-i image1.png
-i image2.png
-filter_complex
[0:v]scale=720:720,setsar=1[scl1]; [1:v]scale=720:720,setsar=1[scl2];
[scl1]zoompan=z=if(lte(zoom, 1.0), 1.55, max(1.001, zoom - 0.0010)):s=720x720:d=205, fade=t=out:st=7:d=1[v0];
[scl2]zoompan=z=if(lte(zoom, 1.0), 1.55, max(1.001, zoom - 0.0010)):s=720x720:d=205, fade=t=in:st=0:d=1,fade=t=out:st=7:d=1[v1];
[v0][v1]concat=n=2:v=1:a=0, format=yuv420p[v] -map [v] outputVideo.mp4
在单个图像上使用 zoompan 时,在过滤器中设置持续时间(以帧为单位),而不是在输入中。
您突出显示的问题是由于缩放过滤器调整了纵横比。 setsar 过滤器使它们相同。
我正在使用 ffmpeg android 来制作 mp4 格式的视频。我无法让这个命令在 FFMPEG 中工作,基本上我试图添加两个图像,缩放它们,添加缩放效果,最后将结果连接到一个视频文件中。我做过这样的事情:
ffmpeg
-t 8 -i image1.png
-t 8 -i image2.png
-filter_complex
[0:v]scale=720:720[scl1]; [1:v]scale=720:720[scl2];
[scl1]zoompan=z=if(lte(zoom, 1.0), 1.55, max(1.001, zoom - 0.0010)):d=205, fade=t=out:st=7:d=1[v0];
[scl2]zoompan=z=if(lte(zoom, 1.0), 1.55, max(1.001, zoom - 0.0010)):d=205, fade=t=in:st=0:d=1,fade=t=out:st=7:d=1[v1];
[v0][v1]concat=n=2:v=1:a=0, format=yuv420p[v] -map [v] outputVideo.mp4
修改这个命令有一段时间了,但仍然无法正常工作,我得到了错误:
Input link in1:v0 parameters (size 1280x720, SAR 0:1) do not match the corresponding output link in0:v0 parameters (1280x720, SAR 45:31)
[Parsed_concat_7 @ 0xf0d77600] Failed to configure output pad on Parsed_concat_7
使用
ffmpeg
-i image1.png
-i image2.png
-filter_complex
[0:v]scale=720:720,setsar=1[scl1]; [1:v]scale=720:720,setsar=1[scl2];
[scl1]zoompan=z=if(lte(zoom, 1.0), 1.55, max(1.001, zoom - 0.0010)):s=720x720:d=205, fade=t=out:st=7:d=1[v0];
[scl2]zoompan=z=if(lte(zoom, 1.0), 1.55, max(1.001, zoom - 0.0010)):s=720x720:d=205, fade=t=in:st=0:d=1,fade=t=out:st=7:d=1[v1];
[v0][v1]concat=n=2:v=1:a=0, format=yuv420p[v] -map [v] outputVideo.mp4
在单个图像上使用 zoompan 时,在过滤器中设置持续时间(以帧为单位),而不是在输入中。
您突出显示的问题是由于缩放过滤器调整了纵横比。 setsar 过滤器使它们相同。