This project compresses .mp4 files with the word "trim" in the filename, renames them sequentially (e.g., Clip (1), Clip (2)), and moves them to the clips_folder.
- Docker
- Python (for local development)
-
Clone the repository.
-
Build the Docker image:
docker build -t video_compressor -
Run the Docker container with folder bindings:
docker run -v /path/to/input_folder:/input_folder -v /path/to/clips_folder:/clips_folder video_compressor
input_folder/: Drop.mp4files here to be processed.clips_folder/: Processed and compressed video files will be saved here.