0

How to just zoom some video area for n seconds? Without any fade in/out movements? The only parameters I should pass are: start time in seconds, stop time or duration, center point and frame dimensions, and zoom level. This can overlay the original, not zoomed area.

Have no code for now, because don't know how to start it, but I'll develop it now.

Peter.k
  • 149
  • 9

1 Answers1

2

Since each step is explained better in other answers I'll just link them in this post:

  1. Slice the video into N parts using this answer.
  2. Then use this answer to zoom required part(s).
  3. Merge all parts back in order using this answer (you can actually use it in step 1 too).