From 19a552120152c0049d68032dc792e47f633901fd Mon Sep 17 00:00:00 2001 From: Innovation Date: Sat, 13 Apr 2024 08:38:20 -0500 Subject: [PATCH] This should now work for really any video as I've un-hardcoded the frame count. --- README.md | 2 ++ badapple.py | 5 +++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7848472..82a1d74 100644 --- a/README.md +++ b/README.md @@ -16,3 +16,5 @@ This demo is VERY poorly written, but I don't care that much. The repository contains all of the lpbm files prebuilt, but if you'd like to do it yourself you can download [the video that was used](https://youtu.be/9lNZ_Rnr7Jc). The file must be named `original.mp4`. Once that file is there, run the `generate.sh` script. It will take care of everything. + +It's worth noting that this could probably be used for any video file if you so desired. Not sure why youd want to do that, though, unless it's for an animation of some sort which could be kinda fun. diff --git a/badapple.py b/badapple.py index 97a0ea2..70fbe28 100755 --- a/badapple.py +++ b/badapple.py @@ -3,9 +3,11 @@ import os import time import shutil +# Set this to False if you want ALL frames to be played. This will cause the video to move at half pace. skipFrames = True +directory = 'lpbm/' -totalFrames = 7777 +totalFrames = len(os.listdir(directory)) if skipFrames: startFrame=1 @@ -16,7 +18,6 @@ else: startTime = time.time() -directory = 'lpbm/' for i in range(startFrame, totalFrames, skip): path = os.path.join(directory, str(i)+".lpbm")