From 410655abded9ca062f4c53c567d59d5df43b587d Mon Sep 17 00:00:00 2001
From: Hesper Yin <hyin2@andrew.cmu.edu>
Date: Thu, 10 Dec 2020 00:48:32 -0500
Subject: [PATCH] Update generate_videos.md

---
 docs/animation/generate_videos.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/animation/generate_videos.md b/docs/animation/generate_videos.md
index 50dddb5..a780f45 100644
--- a/docs/animation/generate_videos.md
+++ b/docs/animation/generate_videos.md
@@ -10,6 +10,6 @@ permalink: /generate_videos/
 
 Once you've rendered all the frames of your video, you can combine them into a video by using:
 
-`ffmpeg -r 60 -f image2 -s 800x600 -i ./Video_[TIME]_%4d.png -vcodec libx264 out.mp4`
+`ffmpeg -r 60 -f image2 -s 800x600 -i ./%4d.png -vcodec libx264 out.mp4`
 
 Where `[TIME]` should be replaced by the timestamp in each frame's filename (they should all be identical). If you don't have ffmpeg installed on your system, you can get it through most package managers, or you can [download it directly](https://ffmpeg.org/download.html), or use your own video creation program.
-- 
GitLab