Since BeReal took away the traditional recap video, I decided to put together one myself. With the help of GPT-4, I worked out a fairly simple solution.
Step 1: Downloading Your Photos from BeReal
- Open your web browser on a computer and go to toofake.lol.
- Use your phone number to log in.
- Once logged in, look for the button named "memories" and click on it.
- Look for a checkbox that says "Export merged primary + secondary into one image". Select this.
- There should be a button that says "download all as ZIP". Click this to download all your photos in a ZIP file.
Step 2: Making the Video with Python
- Create a New Folder: On your computer, make a new folder where you want to keep your video project.
- Set Up Python:
- If you don’t have Python installed, download it from python.org and follow the instructions to install it.
- Open your command prompt (Windows) or terminal (Mac/Linux). Type
python3 -m venv myenv
to create a new Python environment called 'myenv'. - Activate the environment:
- On Windows, type
myenv\Scripts\activate
. - On Mac/Linux, type
source myenv/bin/activate
.
- On Windows, type
- Install moviepy: In the same command prompt or terminal, type
pip install moviepy
. This installs a tool to help make the video. - Get ImageMagick:
- Download ImageMagick from imagemagick.org for your operating system and install it. This tool helps with image processing. On MacOS, all you have to do is type
brew install imagemagick
into terminal.
- Download ImageMagick from imagemagick.org for your operating system and install it. This tool helps with image processing. On MacOS, all you have to do is type
- Prepare Your Photos:
- Find the ZIP file you downloaded from BeReal and unzip it.
- Rename the unzipped folder to 'photos'.
- Move this 'photos' folder to the new folder you created in step 1.
- Create and Run the Python Script:
- Open a text editor (like IDLE, Notepad, TextEdit) and copy-paste the provided Python script below
recap.py
into it. - Save this file as
recap.py
in your project folder. - Go back to your command prompt or terminal. Make sure you're in your project folder (use the
cd
command to navigate). - Run the script by typing
python recap.py
.
- Open a text editor (like IDLE, Notepad, TextEdit) and copy-paste the provided Python script below
- Enjoy Your Video!
- After the script finishes running, look for a file named
final_recap.mp4
in your project folder. - Open it to watch your recap video.
- After the script finishes running, look for a file named
That's it! Enjoy watching your BeReal memories come together in a video.
This content is avaliable under the MIT License.