This should now work for really any video as I've un-hardcoded the frame count.

This commit is contained in:
Innovation 2024-04-13 08:38:20 -05:00
parent e64af49110
commit 19a5521201
2 changed files with 5 additions and 2 deletions

View file

@ -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.

View file

@ -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")