I have been trying to find a way to convert a long video I have of Robin eggs hatching into a time lapse like short video only a few minutes long. My thought was to remove all but one frame of say every 1000 or something along this line. Does anyone know if this is possible? I have tried a few web suggestions but none have been succesful. You should know I don't have much video expertise (or money) so answers will have to be quite dumbed down and cheap. Thanks
		
			+ Reply to Thread
			
		
		
		
			
	
	
				Results 1 to 4 of 4
			
		- 
	
- 
	AviSynth's SelectEvery command can do it easily: 
 
 SelectEvery(1000,0)
 AssumeFPS(29.97)
 
 That says to keep the first frame out of every 1,000. It's followed by the AssumeFPS command to set a framerate. It'll require reencoding, though. Depending on the format of the video, there's a chance it can be done without reencoding.
 
 As AviSynth is free, you can't get any cheaper than that. As for difficulty, maybe if you told us the kind of video we could get you going well enough to get through this one. A MediaInfo text screen would provide the details....so answers will have to be quite dumbed down and cheap.Last edited by manono; 20th May 2017 at 15:55. 
- 
	So, already one quality degrading step. Anyway, since it's an XviD AVI now, after installing AviSynth you can use AviSynth's AVISource on it: 
 
 AviSource("Video.avi")### replace with real name
 SelectEvery(1000,0)###or whatever number you wish to use
 AssumeFPS(29.97)###or whatever the original framerate was.
 
 Open it in VDub as you would any video (File->Open Video File), choose and configure codec and encode. Let us know if you run into problems. If so, provide the script used and any error message
Similar Threads
- 
  Time Lapse VideoBy itech in forum Newbie / General discussionsReplies: 2Last Post: 20th Apr 2016, 16:16
- 
  convert 30 fps time lapse video to 60 fps to speed up and keep all framesBy acem77 in forum Video ConversionReplies: 12Last Post: 19th Jan 2016, 21:01
- 
  Give 30fps video a time lapse look?By zapster in forum EditingReplies: 16Last Post: 31st Aug 2014, 08:15
- 
  Time Lapse Video from existing WMV fileBy willboss in forum Newbie / General discussionsReplies: 5Last Post: 17th Sep 2013, 03:35
- 
  Need help to determine the best way to make a time lapse videoBy snafubaby in forum Newbie / General discussionsReplies: 2Last Post: 3rd Jun 2013, 11:22


 
		
		 View Profile
				View Profile
			 View Forum Posts
				View Forum Posts
			 Private Message
				Private Message
			 
 
			
			

 Quote
 Quote