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