Hi cats,
I have a source (gopro) @ 25fps progressive.
But I need an avisynth output of 50fps.
How I can double frame rate? thanks
+ Reply to Thread
Results 1 to 7 of 7
-
-
AssumeFPS(50) # Will double the frame rate, cut your video duration in half, and make your video twice as fast
Or you can use something like MSU Frame Rate Conversion, which can create frames by using existing frames for reference. It's not perfect and will create artifacts with low quality sources, high quality sources usually work well. There are also other better interpolaters out there but this one is a decent free one.
#Example
AviSource("video.avi")
ConvertToYV12().MSU_FRC(2, "slow") #The video needs to be YV12 for the filter to work
http://compression.ru/video/frame_rate_conversion/index_en_msu.html -
It was shot as 25fps with corresponding shutter speed, so changefps() seems to be appropriate in this case , I'd use that. Just doubling frame rate (and not interpolating frames) but not changing time as assumefps() would do. But it only makes sense if there is 50p needed, like mixing 50p footage, or 50p for Blu-Ray etc.
Changefps(50) -
I was looking for something that would just duplicate frames so thanks for mentioning changefps().
Similar Threads
-
Deinterlacing settings for PAL DVD rip (double frame rate, or not?)
By Phat J in forum DVD RippingReplies: 7Last Post: 29th Dec 2014, 13:59 -
if you double the frame rate must you double the bit rate...
By deadrats in forum Video ConversionReplies: 11Last Post: 8th Oct 2013, 20:17 -
MeGUI/AviSynth automatically changing frame rate to 17.843
By Hakuromatsu in forum Video ConversionReplies: 9Last Post: 14th Jun 2013, 01:48 -
MadVR's smooth motion in Avisynth for frame-rate conversions?
By Greathelp in forum Video ConversionReplies: 1Last Post: 9th Jun 2013, 11:38 -
MediaInfo: Frame Rate vs Original Frame Rate
By adalect in forum Video ConversionReplies: 1Last Post: 19th Aug 2012, 17:44