'FFMPEG zoom out 0.8 (Less than 1)
ffmpeg -y -i Your_files\4.MP4 -filter_complex "
[0]trim=start=0:duration=25,scale=-2:1080[a];
[0]trim=start=25:duration=5,setpts=PTS-STARTPTS,scale=-2:1080[b];
[a]zoompan=z='min(max(zoom,pzoom)+0.0050,1.3)':d=1:x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)',scale=-2:1080[d];
[b]rotate=min(n/0.2*PI/180\,90*PI/180),scale=-2:1080[c];
[c]zoompan=z='1.3-0.015*on':d=1:x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)',scale=-2:1080[e];
[d][e]concat"
-preset ultrafast -codec:a copy Result\8.mp4
The first step makes the zoom in 1.3 The last step zooms out by 1.0 How do I zoom out by 0.6-0.8 from 1 (I need the video to be even smaller than it was originally)
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|
