Log in

View Full Version : 50p from 2x25p


wqcr
24th May 2009, 14:11
Hi,
how can I make 50fps progressive from two 25fps progressive clips?
Like this:
| clip1 frame 1 |
| clip2 frame 1 |
| clip1 frame 2 |
| clip2 frame 2 |
| clip1 frame 3 |
...

scharfis_brain
24th May 2009, 14:11
a=xxxsource("video1.xxx")
b=xxxsource("video2.xxx")
interleave(a,b)

wqcr
24th May 2009, 14:24
:thanks: , that was the final piece to my deinterlacing idea!

Guest
24th May 2009, 14:50
What is your idea? I suspect that you may be re-inventing the wheel in an inefficient way.

wqcr
24th May 2009, 15:14
I'm trying to solve it through overlaying one deint. method to another. In this case, the TomsMoComp overlaying with Cubic Interpolation (50:50). Or TomsMoComp with FFMpeg deintelace, but this will produce more stairstepping...

Floatingshed
24th May 2009, 18:46
a=xxxsource("video1.xxx")
b=xxxsource("video2.xxx")
interleave(a,b)

I always smile when I see this sort of code followed by the words: "Don't forget the c"!

Adub
25th May 2009, 05:11
If you are just deinterlacing, then why not use a better deinterlacer like MCBob or TempGaussMC which can output 50fps natively from 25fps sources?