Does anyone know of a encoder or program that will encode a WMV in reverse? I would like to take a 30 second wmv and reverse it at the end to make it a total of 60 seconds long. I want to do this so it can be looped and used as a dreamscene in Windows Vista.
+ Reply to Thread
Results 1 to 9 of 9
-
-
You need to use an editor to do this, not an encoder. Windows Movie Maker will do it. Add the video to the timeline twice, and reverse the second instance.
Read my blog here.
-
I had a try. And it worked. These were the steps.
Download and install Virtualdub.
Download and install AVISynth.
This next bit will probably be different for your clip.
Create an AVS script 'clip.avs', containing the following line and open it in Virtualdub.
directshowsource("clip.wmv", fps=25, convertfps=true, audio=true)
'File/Save as AVI' 'forward.avi'.
Create a script file, 'reverse.avs' containing the following 2 lines and open it in Virtualdub.
AVISource("forward.avi")
Reverse()
'File/Save as AVI' 'reverse.avi'.
Now you have the two files, one playing forward and the other playing in backwards.
Open forward.avi in Virtualdub. Go to the menu 'File/Append AVI segment'.
Locate and open reverse.avi.
'File/Save as AVI' 'bothways.avi'
This is it. Shortest WMV clip I had. No apologies for the content.
[
Edit: Some of my post slightly redundant. So I deleted it.
bothways-xvid.avi -
You can do that in one script (and without encoding the 2nd part twice), but I would guess that Someguy2 doesn't know the first thing about AviSynth:
A=directshowsource("clip.wmv", fps=25, convertfps=true, audio=true)
B=A.Reverse()
A+B
I don't have any WMV stuff on which to test, but it (or some variation of it) should work. -
Originally Posted by guns1inger
-
If you need further help using the Avisynth, especially someone new to the program, how to script for reverse or play backwards in video tutorial form, you can find it here:
http://www.youtube.com/watch?v=6uNMSQRNK0Y
TS
Similar Threads
-
Direction for software
By JohnCrewdson in forum Newbie / General discussionsReplies: 2Last Post: 23rd Mar 2010, 14:17 -
Merging two videos of wedding. Need direction.
By Montezuma45 in forum EditingReplies: 11Last Post: 22nd Jun 2009, 18:56 -
4:2:0 - more than one type of Cb Cr sampling direction ?
By Movie-Maker in forum Newbie / General discussionsReplies: 3Last Post: 20th Aug 2008, 16:45 -
DVD read direction
By jfharper in forum Newbie / General discussionsReplies: 10Last Post: 6th Oct 2007, 20:05 -
n00b video guy needing direction..
By baldbilly in forum Newbie / General discussionsReplies: 8Last Post: 7th May 2007, 10:15