I am trying to convert videos to high quality framerate using "AviSynth MSU Frame Rate Conversion Filter" made by
http://compression.ru/video/frame_rate_conversion/index_en_msu.html
But everytime I try to do that the output video is strange: Sometimes , some motion scene has warp effect or 3D ripple effect (i don't know what it's called but it's something like that).
Was the problem caused by the input video (bad quality?) or was the problem caused by the filter??
I did exaclty what it says: The input video must be in YV12 colorspace.
To convert a video into YV12 colorspace use ConvertToYV12.
The width and the height of the input video must be multiples of 16.
To resize a video use Crop and/or AddBorders.
Code:
AviSource("video.avi")
ConvertToYV12().MSU_FRC(4, "slow")
+ Reply to Thread
Results 1 to 4 of 4
-
-
Common problem. That MSU filter isn't as good as MVtools' rate changer
http://avisynth.org.ru/mvtools/mvtools-v1.10.2.1.zip
AviSource("video.avi")
ConvertToYV12()
source=last
# Assume progressive PAL 25 fps source. Lets try convert it to 50.
backward_vec = source.MVAnalyse(isb = true, truemotion=true, pel=2, idx=1, search=3)
# we use explicit idx for more fast processing and use full search
forward_vec = source.MVAnalyse(isb = false, truemotion=true, pel=2, idx=1, search=3)
cropped = source.crop(4,4,-4,-4) # by half of block size 8
backward_vec2 = cropped.MVAnalyse(isb = true, truemotion=true, pel=2, idx=2, search=3)
forward_vec2 = cropped.MVAnalyse(isb = false, truemotion=true, pel=2, idx=2, search=3)
source.MVFlowFps2(backward_vec,forward_vec,backwar d_vec2,forward_vec2,num=50,idx=1,idx2=2) -
-
The problem is in all motion vector based frame interplators. And it always will be. There is no way for a program to perfectly determine exactly what happened between two frames of video.
Here's another example: https://forum.videohelp.com/topic303037.html#1534640
Similar Threads
-
Converting my HD DV movies to play on TiVo HD in high quality
By nashmarkt in forum Newbie / General discussionsReplies: 24Last Post: 7th Sep 2010, 13:21 -
Converting a dvd vob to a high quality compressed file.. for youtube.
By powrtoch in forum Video ConversionReplies: 3Last Post: 28th Nov 2009, 04:24 -
Converting my HD DV movies to play on TiVo HD in high quality
By nriahi in forum Video ConversionReplies: 2Last Post: 18th Jun 2009, 18:48 -
Converting from flv to high quality video format
By venus in forum Newbie / General discussionsReplies: 3Last Post: 29th Apr 2008, 13:47 -
converting framerate problem
By Shaorin in forum Newbie / General discussionsReplies: 0Last Post: 3rd Jun 2007, 00:00