|
|
| GKgames |
| Posted: Aug 29 2014, 08:16 AM |
 |
|
Newbie

Group: Members
Posts: 1
Member No.: 38237
Joined: 29-August 14

|
Hi and hello, I am looking to find a filter for virtualdub or another way to playback a video and save it to play backwards meaning from the end to the start. I have many videos to do and I don't really want to be saving the videos as pictures then renaming them in reverse to past back into virtualdub, if virtualdub cant do this what is another free program that can? Thank you, GKgames. |
 |
| Gral |
| Posted: Aug 29 2014, 09:36 AM |
 |
|

Advanced Member
  
Group: Members
Posts: 125
Member No.: 11018
Joined: 11-July 04

|
Avisynth - Reverse filter |
 |
| raffriff42 |
| Posted: Aug 29 2014, 05:14 PM |
 |
|

Advanced Member
  
Group: Members
Posts: 384
Member No.: 35081
Joined: 25-June 12

|
In case you are going "avi-wha...?" here's a quick start:- download & install AviSynth v.2.6.0 ST, 32-bit.
- copy the code from the box below into your text editor
- change "your video.avi" to the full path to your video
- save as plain text with .avs extension
- open .avs in Virtualdub with File, Open video file, just as if it was an AVI.
| CODE | AviSource("your video.avi") Reverse
|
If by chance your source video is not AVI, use FFmpegSource2 to open the file in Avisynth: | CODE | FFmpegSource2("your video.mkv", atrack= -1) Reverse
|
|
 |