manoj-bhaskaran / My-Scripts

0 stars 0 forks source link

Print Progress Message Every n Videos During Cropping Phase #28

Closed manoj-bhaskaran closed 1 day ago

manoj-bhaskaran commented 2 days ago

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:

  1. A configurable parameter ($croppingProgressInterval) should allow the user to specify how often progress messages are printed.
  2. 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.
  3. Ensure the message reflects the correct count for videos cropped in the current session.

Additional Notes: