Hello all
Recently I came across a video from a known tv series in 30 fps. It’s progressive no interlaced. Is there a script / command line with avisynth to reduce fps to 23.976 fps (where it should be) ? WITHOUT reducing the duration of the video ? Same question with a video at 29.97 fps, progressif too (and not a live event)
I’ve search the forum a bit, I found many posts but no clear answer.
Thanks
Kalemvar1
+ Reply to Thread
Results 1 to 3 of 3
-
-
I'm not familiar with avisynth, but this is called decimation; you should be able to find an answer by searching for decimation or decimate. Here's how to do it with ffmpeg:
Code:ffmpeg -i input.mkv -vf decimate -acodec copy -scodec copy -map 0 output.mkv
If the source were interlaced (like a DVD), then it would be called inverse telecine (IVTC).Last edited by Luke M; 10th Jul 2022 at 08:58.
-
AviSynth, if it doesn't have blending artifacts:
Code:WhateverSource("filename.ext") TDecimate()
Last edited by jagabo; 10th Jul 2022 at 11:17.
Similar Threads
-
Removing duplicate frames from YouTube 60fps to 23.976 fps
By AndersonJames in forum RestorationReplies: 39Last Post: 5th Aug 2020, 22:47 -
Virtualdub 23.976 fps to 29.97 fps
By luciofulci in forum Video ConversionReplies: 14Last Post: 11th Mar 2020, 16:30 -
Ultimate Guide for Interlaced (29,97 fps) to Progressive (23,976/59,94 fps)
By kalemvar1 in forum Video ConversionReplies: 9Last Post: 22nd Dec 2018, 06:49 -
How to maintain bitrate when editing, plus not need to reduce the FPS??
By Apollo89x in forum EditingReplies: 14Last Post: 30th Jun 2018, 06:12 -
Are 23.976 (24000/1001) FPS and 23.976 FPS the same?
By Chibi in forum EditingReplies: 1Last Post: 17th Sep 2017, 12:40