I've tried most settings and options I could think of, but I never got it to work.
Also, I'd like to know if there is a way to make only a specific section of the clip run backwards, and not all of it?
Thanks in advance.
+ Reply to Thread
Results 1 to 16 of 16
-
-
Not upside down, but backwards.
For example, if bullets are shot at a wall in a scene, I'd like to make the bullets fly back out of the wall and into the gun. -
LOL, I know. If you turn ur screen upsidedown then the action moves the opposite way. Nevermind, u missed the rimshot and baddabing on it.
Heres a long convoluted way to do it, altho there is prolly an easier way that someone will come up with.
Burn to disc, play on ur dvd player thru ur vcr while taping it. Then play the tape in reverse while capturing it on ur computer. -
Install avisynth.
open notepad
type
DirectShowSource("c:\video.avi")
Reverse()
save as video.avs
open it in Virtualdub -
Thanks, I got it to work now. Though the frame rate seems a bit jumpy. Maybe it'll be normal once I save the avi clip.
-
Where exactly in the text do I put in the framerate? Could you insert it here as an example?
DirectShowSource("C:\Documents and Settings\Hiku\My Dokuments\Media Test\Clip 1.avi") -
DirectShowSource("C:\Documents and Settings\Hiku\My Dokuments\Media Test\Clip 1.avi", 25fps)
And if you go to their site, there are tutorials. I'm just learning about the program also.
http://www.avisynth.org/ -
"Shut up Wesley!" -- Captain Jean-Luc Picard
Buy My Books -
Reversing the video will also reverse the Field order which may account for the jerkiness. I would download the following plugin ReverseFieldDominance and place it in the Plugins folder under AviSynth. Your script should then be:-
AviSource("C:\Documents and Settings\Hiku\My Dokuments\Media Test\Clip 1.avi")
Reverse() # This reverses the video via AviSynth
ReverseFieldDominance() # The default is Shift up one line"Just another sheep boy, duck call, swan
song, idiot son of donkey kong - Julian Cope" -
I usually use AssumeTFF() to correct the field order, but my source is usually DV from my camcorder (so I know my source is BFF).
"Shut up Wesley!" -- Captain Jean-Luc Picard
Buy My Books -
You will also want to look up the trim() command since you only want to reverse part of the clip.
part1 = trim(video,0,500).reverse()
part2 = trim(video,501,0)
return part1+part2
etc.
Similar Threads
-
video player that can step forward/backwards and change play speed
By wildflow in forum Software PlayingReplies: 5Last Post: 5th Jul 2012, 18:16 -
Video in Virtual dub out of sync
By lituvis in forum Video ConversionReplies: 0Last Post: 7th Mar 2012, 09:56 -
Virtual Dub Mod video combining?
By wcdeich4 in forum EditingReplies: 1Last Post: 18th Dec 2009, 07:18 -
How to change video resolution exactly in Virtual Dub Mod 16:9 to 4:3
By afcoff in forum Video ConversionReplies: 1Last Post: 12th Jan 2009, 11:49 -
No Video In Virtual Dub, Just Audio
By AllenM in forum EditingReplies: 11Last Post: 3rd Oct 2008, 13:35