Add functionality to print a progress message during the cropping phase. After every n videos are cropped (where n is a configurable parameter), the script should print a message in the format (where m is the total number of videos to be cropped):
Cropped n out of m videos so far
Acceptance Criteria:
A configurable parameter ($croppingProgressInterval) should allow the user to specify how often progress messages are printed.
During the cropping phase, after every n videos are processed, the script should:
Count the number of cropped videos.
Print a message in the format: Cropped n videos so far.
Ensure the message reflects the correct count for videos cropped in the current session.
Additional Notes:
Default value for $croppingProgressInterval should be reasonable (e.g., 10).
Add functionality to print a progress message during the cropping phase. After every
n
videos are cropped (wheren
is a configurable parameter), the script should print a message in the format (where m is the total number of videos to be cropped):Acceptance Criteria:
$croppingProgressInterval
) should allow the user to specify how often progress messages are printed.n
videos are processed, the script should:Cropped n videos so far
.Additional Notes:
$croppingProgressInterval
should be reasonable (e.g.,10
).