I wanted to layer other clip.
One clip's FPS is 30. Other clip's FPS is 25.
It's different.
So i used ConvertFPS.
I read a guide which http://avisynth.nl/index.php/FPS
LINEVideo1File = FFVideoSource(LINEVideo1FileName,cache=False, threads=1).AssumeFPS(30) # This clip's FPS is 30.
YoutubeVideo1File = FFVideoSource(YoutubeVideo1FileName,cache=False, threads=1).ConvertFPS(30) # This clip's FPS is 25.
I want to change Youtube's FPS. But I didn't.
I just see The Error Message.
NEW Frame rate to small. Must be greater than 60000.00000 Increase or use 'zone='.
But.. I can just use parameter New_FPS... I can write 30 or clip name. the This manual said.
So, I tryed write 60000.
Frame count of this clip changes 23046 to 15364
I don't understand this parameter value.
+ Reply to Thread
Results 1 to 7 of 7
-
-
Try this to see what the frame rate really is, if you haven't done so already.
YoutubeVideo1File = FFVideoSource(YoutubeVideo1FileName,cache=False, threads=1).Info()
The error message seems to imply your source is 90000 fps as it occurs when reducing the frame rate and the new rate is less than 2/3 of the source rate. For example, if you tried to convert a 25fps source to 10fps, you'd see the following error message, as the minimum "new" frame rate for a 25fps source is 16.67fps unless you use the zone option.
AssumeFPS(25)
ConvertFPS(10)
NEW Frame rate to small. Must be greater than 16.66666 Increase or use 'zone='.
There appears to be something peculiar happening when the video is being decoded. -
-
-
They use different techniques. ChangeFPS() simply duplicates or decimates frames to reach the desired frame rate. It can be used to convert any fps to any other fps. ConvertFPS() blends frames together (which can look a little smoother at times) to change the frame rate but has a limited range of fps. It can only reduce the frame rate by at most 1/3. For example 30 fps to 21 or 20 fps will work. 30 fps to 19 fps will not.
-
Similar Threads
-
Mkvmerge - FPS setting - can it change variable fps to constant?
By TheLastOfThem in forum Video ConversionReplies: 8Last Post: 10th Jul 2016, 01:26 -
eac HD audio FPS change
By asiafan in forum AudioReplies: 4Last Post: 29th Oct 2015, 15:28 -
how can I change FPS of an SRT that has an unknown FPS?
By mrjayviper in forum SubtitleReplies: 5Last Post: 21st May 2015, 06:22 -
Megui change FPS
By Tylerr in forum Video ConversionReplies: 52Last Post: 28th Oct 2014, 13:56 -
Easy tool to change audio fps
By davidbowie in forum AudioReplies: 20Last Post: 17th Jul 2014, 04:23