Recall & Review
beginner
What is time-lapse photography?
Time-lapse photography is a technique where a camera takes photos at set intervals over a period of time. When played back quickly, it shows slow events happening fast, like clouds moving or plants growing.
Click to reveal answer
beginner
Which Raspberry Pi accessory is commonly used for time-lapse photography?
The Raspberry Pi Camera Module is commonly used. It connects directly to the Pi and can take high-quality photos at intervals.
Click to reveal answer
intermediate
How do you schedule photo captures at regular intervals on Raspberry Pi?
You can use a Python script with a loop and the time.sleep() function to wait between shots. Alternatively, you can use cron jobs to run capture commands at set times.
Click to reveal answer
beginner
What is the purpose of combining photos into a video in time-lapse?
Combining photos into a video plays the images quickly, showing slow changes as fast motion. This creates the time-lapse effect.
Click to reveal answer
intermediate
Name a command-line tool to create a time-lapse video from images on Raspberry Pi.
FFmpeg is a popular tool to combine images into a video. You can run a command like 'ffmpeg -framerate 30 -i img%04d.jpg output.mp4' to make a video.
Click to reveal answer
What does the time.sleep() function do in a time-lapse script?
✗ Incorrect
time.sleep() pauses the program, letting you wait between each photo capture.
Which Raspberry Pi accessory is needed to capture images for time-lapse?
✗ Incorrect
The Camera Module connects to the Pi and captures photos for time-lapse.
What is the main reason to use FFmpeg in time-lapse photography?
✗ Incorrect
FFmpeg takes many photos and creates a video file to show the time-lapse effect.
How can you automate photo capture at fixed times on Raspberry Pi?
✗ Incorrect
Cron jobs let you schedule commands to run automatically at set times.
What happens when you play time-lapse photos quickly as a video?
✗ Incorrect
Playing photos fast shows slow changes quickly, which is the time-lapse effect.
Explain how you would set up a simple time-lapse photography project using a Raspberry Pi.
Think about hardware, capturing photos, timing, and making a video.
You got /4 concepts.
Describe the role of scheduling tools like cron in time-lapse photography on Raspberry Pi.
Consider how to make the camera take pictures automatically.
You got /4 concepts.
