VideoHelp Forum
+ Reply to Thread
Results 1 to 6 of 6
Thread
  1. Hi ****,

    with the gopro camera I have shoot a little attached video that seems a little jerky because of the 25 fps progressive.

    I wonder: is there a way, in avisynth (or other programs) to have a more smooth video?

    thanks
    Image Attached Files
    Quote Quote  
  2. Motion interpolation techniques can work well with video that doesn't have complex or too fast motion.

    https://forum.videohelp.com/threads/329754-Help-deinterlacing-IVTC-ing-VHS-material-con...=1#post2042689

    You'll need mv_tools2 to use that function. It generates noticeable artifacts with your video though.
    Quote Quote  
  3. my target, for the moment, is a SD monitor standard interlaced

    I try to understand if exist a particular avisynth script that can reduce the jerking in image, possibly without artifacts or minimum artifacts
    Quote Quote  
  4. 576i25 TFF:

    Code:
    import("C:\Program Files (x86)\AviSynth 2.5\plugins\DoubleFPS2.avs") 
    
    ffVideoSource("gopro.mp4") 
    BilinearResize(720,576)
    DoubleFPS2()
    AssumeTFF().SeparateFields().SelectEvery(4,0,3).Weave()
    There WILL be artifacts.
    Last edited by jagabo; 1st Sep 2014 at 09:36.
    Quote Quote  
  5. You can try adding motion blur with QTGMC to create 25 fps video that flickers a little less.


    Code:
    ffVideoSource("gopro.mp4") 
    BilinearResize(720,576)
    QTGMC( Preset="Fast", InputType=1, ShutterBlur=1, ShutterAngleSrc=30, ShutterAngleOut=360)
    Quote Quote  
  6. Member Cornucopia's Avatar
    Join Date
    Oct 2001
    Location
    Deep in the Heart of Texas
    Search PM
    If you didn't mind the speed-up, you could:
    Code:
    AssumeFPS(pal_double)
    Scott
    Quote Quote  
Visit our sponsor! Try DVDFab and backup Blu-rays!