How to Make a Video Play in Reverse
In my previous article I covered how you can play a video in reverse order using Pinnacle, now this trick is another solution to achieve the same.
Have you wondered how cool it would be if you could make a home movie in which everything is going backwards? This article is going to show you a cute little trick that will not only earn you an extra notch of cool quotient in amateur video-making, but also take you closer to the real thing in movie making.
Typically, most of the common movie-making packages that beginners use – such as Movie Maker, Roxio, etc. – do not have any filter/tool that will change a video such that it is running backwards. However, with the combined power of two very widely used tools – AviSynth and VirtualDub – you can accomplish this trick easily.
Here’s what you have to do.
First, download and install AviSynth and VirtualDub, both of which are free softwares easily available on the web. Now, you have two categories of video reversal procedures depending on whether the video is an AVI file or a non-AVI file.
- Video reversing for an AVI file
- First, you have to make a ‘script’ – which is a simple text file that tells VirtualDub which video is to be reversed. For this, open a blank notepad file, and enter the following text:
Reverse(AVISource(“C:\yourfile.avi”))
[Here, you have to give the exact file location in place of C:\yourfile.avi.] - Now, save the text file with a .avs file extension.
- Open VirtualDub.
- Drag the .avs file you saved in Step 1b into the VirtualDub window.
- The reversed video is generated. Save it by going to File -> Save As.
- First, you have to make a ‘script’ – which is a simple text file that tells VirtualDub which video is to be reversed. For this, open a blank notepad file, and enter the following text:
- Video reversing for a non-AVI file
- In this case, the method is exactly the same as the above – only you have to mention the frame rate of the video you want to reverse.
- Generate the ‘script’ by opening a blank text file and entering:
Reverse(DirectShowSource(“C:\yourfile.wmv”, 29.97))
[Here, 29.97 is an example of frame rate specification. This is the most common frame rate for an NTSC video.] - Save the file with the .avs extension.
- Open VirtualDub, drag the .as file onto its window, and save the reversed video using File -> Save As.