Description
TESTING 3 2 1 from PEIKA on Vimeo.
One method is to record the digital film onto a video tape and then re-record the secgment whilst playing it in reverse mode on the VCR back onto the digital camera and then edit the final movie with an editor to add sound effects and music.
OR....
Using AVISynth and VirtualDub you can play out almost any video file backward, saving an AVI to import into your favorite video editor.
The following method will work for almost any video that plays back in Windows Media Player, including WMV, MP4, and most AVI files. Your mileage may vary depending on which codecs are installed, but installing ffdshow certainly can't hurt.
Required Software:
- VirtualDub
- AVIsynth
Install both applications and then follow these steps:
Reversing an AVI File
After you get all your applications installed, you need to create an AVIsynth scripts. These are simple text files telling VirtualDub which video you want to reverse. For any AVI source, open notepad and type in the following replacing C:\yourfile.avi with the path to your video:
Reverse(AVISource("C:\yourfile.avi"))
Save the notepad file with .avs as the file extension.
Open VirtualDub.exe and drag and drop your .avs file onto the application window. You can then save the reversed file as an AVI from File > Save As for use in any other application.
Reversing any other Video File
For all non-AVI formats playable in Windows Media Player, you need to use a slightly different method. After you get all your applications installed, you need to create an AVIsynth scripts. These are simple text files telling VirtualDub which video you want to reverse.
For these other video formats, open notepad and type in the following replacing C:\yourfile.wmv with the path to your video:
Reverse(DirectShowSource("C:\yourfile.wmv", 29.97))
For all non-AVI file types you must include the frame rate of the video in order for VirtualDub to properly open the video file. I included 29.97 in this example because it's the most common NTSC frame rate. Other common frame rates include 23.976, 25, and 59.94.
Save the notepad file with .avs as the file extension.
Open VirtualDub.exe and drag and drop your .avs file onto the application window. You can then save the reversed file as an AVI from File > Save As for use in any other application.
Basic Steps
- Shoot some interesting activity that would look funny when played in reverse. Some ideas:
- - Throw a deck of cards in the air, or build a house of cards
- - Throw a package of uncooked spagetti in the air.
- - toss round chocolate malt balls up in the air and catch them in your mouth.
- - Jump and splash in a pool
- - walk on your hands
- Recode the raw video segment from your cam corder to a VCR. The play the VCR in reverse and record it back onto your camera.
- Or use the provided suggested software in the detailed section.
- Add sound effect and music with a video editor

