This project downloads sequential images from a specified URL, extracts EXIF data from the images, and stitches them together into a video file.
- Download Images: Automatically download a sequence of images until a 404 error is encountered.
- EXIF Data Extraction: Extract EXIF metadata from each image and store it in JSON format.
- Create a Video: Stitch the downloaded images together into a video file.
- Clone this repository:
git clone <repository_url>
- install deps:
pip install -r requirements.txt
Usage Step 1: Download Images and Extract EXIF Data Use the download_images.py script to download images and extract EXIF data.
python download_images.pyThe images will be saved in the downloaded_images directory. The EXIF data for each image will be saved in the exif_data directory as JSON files. Step 2: Stitch Images into a Video Once the images have been downloaded, use the stitch_images_to_video.py script to stitch them into a video file.
python stitch_images_to_video.pyThe video will be saved as stitched_video.mp4.