Skip to content

Commit be46368

Browse files
committed
update README.md
1 parent 4887092 commit be46368

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

README.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,15 @@
22

33
A Python script for creating time-lapse videos from images.
44

5+
If you have found this, you probably have the same issue I had: There are plenty of tools to manipulate images, but some of them lack bulk processing capabilities. This script is meant to fill that gap for my use case.
6+
I wanted to create a time-lapse video of my construction site and needed to remove night photos, weekends, crop images, and normalize the intervals of the images.
7+
It is far from perfect, but it works for me. If you have any suggestions or improvements, feel free to open an issue or a pull request.
8+
59
Example usage:
610

711
```bash
8-
source .venv/bin/activate
912
python pyelapse.py remove-photos /path/to_image_folder/ --exclude-time 22:00-06:00 --exclude-days sat,sun
10-
python pyelapse.py create-video /path/to_image_folder/ --output path/time-elapse-video.mp4 --fps 30
13+
python pyelapse.py create-timelapse /path/to_image_folder/ --output path/time-elapse-video.mp4 --fps 30
1114
```
1215

1316
## Remove Photos
@@ -68,4 +71,4 @@ You can compress the output `.mov` file using ffmpeg and H.264 by specifying the
6871
python pyelapse.py create-timelapse /path/to_image_folder/ --output output.mov --fps 24 --crf 23
6972
```
7073

71-
This will create `output.mov` and then compress it to `output_compressed.mov` using ffmpeg.
74+
This will create `output.mov` and then compress it to `output_compressed.mov` using ffmpeg.

0 commit comments

Comments
 (0)