Takie
12th January 2011, 12:39
Hello forum members,
I would like to preview 2 videos side by side, one at 23.98 fps and another that has been frame interpolated to 59.94 fps. In the past I used this script for videos of the same frame rate:
result = ffvideoSource(...)
source = ffvideoSource(...)
source2 = crop(source,Width(result)/4,0,-Width(source)/4,0)
result2 = crop(result,Width(result)/4,0,-Width(result)/4,0)
STACKHORIZONTAL(source2,result2)
But when I do this on the aforementioned, the first one is played at normal speed while the interpolated clip gets slown down. Is there any way to make them play 'in sync' at the same time?
I would like to preview 2 videos side by side, one at 23.98 fps and another that has been frame interpolated to 59.94 fps. In the past I used this script for videos of the same frame rate:
result = ffvideoSource(...)
source = ffvideoSource(...)
source2 = crop(source,Width(result)/4,0,-Width(source)/4,0)
result2 = crop(result,Width(result)/4,0,-Width(result)/4,0)
STACKHORIZONTAL(source2,result2)
But when I do this on the aforementioned, the first one is played at normal speed while the interpolated clip gets slown down. Is there any way to make them play 'in sync' at the same time?