I wanted to place to video files together one plays at 59 frame per second (FPS) the other at 29.97. When I place them together I have to match the frames per second. Is there a way to do this with avisyth and not have one become slow motion or the other have to play twice as fast?
This is what I tried below.
Thanks, LexCode:aaa = avisource ("C:\Documents and Settings\lex\Desktop\2008_may_25\101CANON\MVI_0287.AVI ", false ) bbb = avisource ("C:\Documents and Settings\lex\Desktop\2008_may_25\101CANON\MVI_0289.AVI ", false ) nnnn = avisource ("C:\Documents and Settings\lex\Desktop\2008_may_25\101CANON\MVI_0338.AVI ", false ) oooo = avisource ("C:\Documents and Settings\lex\Desktop\2008_may_25\101CANON\MVI_0339.AVI ", false ) combineda = aaa + bbb combinedb = nnnn + oooo combined=combineda+combinedb.BilinearResize(640,480).assumefps(combineda) return combined
+ Reply to Thread
Results 1 to 3 of 3
-
-
Hi-
Is the output format also to be AVI? And you don't want it to be interlaced? Then drop every other frame of the 59.94fps one:
SelectEvery(2,0), or
SelectEven(), or
ChangeFPS(29.97)
If interlaced output is OK, then you can reinterlace the 59.94fps one to make it interlaced 29.97fps. -
manono, this works like a charm.
combined=combineda+combinedb.BilinearResize(640,48 0).SelectEven().assumefps(combineda)
This will work also.
combined=combineda+combinedb.BilinearResize(640,48 0).ChangeFPS(combineda)
Similar Threads
-
Alternate Method for Creating Poster Frames for Quicktime Movies???
By m021478 in forum MacReplies: 2Last Post: 11th Dec 2011, 16:06 -
Displaying 60p fps (frames per second)
By hollowman in forum Newbie / General discussionsReplies: 13Last Post: 10th Jan 2011, 15:58 -
mixing 1280 x 720 29,97 fps and 1440 x 1080 25 fps in final cut
By perik in forum EditingReplies: 6Last Post: 17th Nov 2010, 22:42 -
How do you play Blu-Ray movies at 60 frames per second?
By Obamargarine in forum Software PlayingReplies: 2Last Post: 26th Feb 2009, 22:19 -
How to convert a video of 120 Fps to... well 23.9fps or 25 fps or 30 fps
By Chuba753 in forum Newbie / General discussionsReplies: 7Last Post: 6th Jun 2008, 19:17