How do I do this?

Locked
:: zaphod ::
Posts: 194
Joined: Mon May 13, 2002 10:52 pm

Post by :: zaphod :: »


I have an .avi file i took with my camera, and I want to take every 5th frame and make it into a new movie (or delete every 4 frames in between, i suppose). That way, it's similar to fast foward, but more choppy and unique looking. Similar to on requiem for a dream when they are in the room after doing drugs.


What program would I need, and how would I do that? So far I've tried adobe premiere and vegas 5.0 and I don't really see how you could do it. :o


Bean
Posts: 141
Joined: Sat Sep 21, 2002 7:39 pm

Post by Bean »


I have an .avi file i took with my camera, and I want to take every 5th frame and make it into a new movie (or delete every 4 frames in between, i suppose). That way, it's similar to fast foward, but more choppy and unique looking. Similar to on requiem for a dream when they are in the room after doing drugs.

What program would I need, and how would I do that? So far I've tried adobe premiere and vegas 5.0 and I don't really see how you could do it.  :o







 


Just cut our every frame in between. Premiere has cutting options.


mr_lee
Posts: 882
Joined: Tue Aug 28, 2001 12:04 am

Post by mr_lee »


i'd be very interested to see if this works or not because i want to be able to do it too!


 


cheers


:: zaphod ::
Posts: 194
Joined: Mon May 13, 2002 10:52 pm

Post by :: zaphod :: »


I found a better way. first download virtualdub and avisynth2.


 


make a textfile called Input.avs and put this in there:


 


AviSource("C:\movie.avi")


SelectEvery(13, 0)


AssumeFPS(8)


 


Change the C:\move.avi to the source of the movie (it should be compressed iwth something. I used dr. divx to convery the avi from my camera into a divx file).


 


the number where the 13 is is how often it takes the frame (every 13th). the 8 is how quickly it plays those frames back.


Change both those numbers respectively :)


Locked