Reino
16th February 2014, 23:37
Hello,
I'm making a compilation video of a tabletennis match where at some point I want to do slomo. With ConvertFPS(200).AssumeFPS(50,true).SSRC(48000) or ConvertFPS(200).AssumeFPS(50).TimeStretch(tempo=25), I get the desired result, but after some searching and reading I noticed I can always do better with MVTools;
BX3=AudioDub(LWLibavVideoSource("00024.mkv"),LWLibavAudioSource("00024.mkv")) #1080p50 source
function SmoothFps(clip source, float fps) {
fp=fps*100
super=MSuper(source)
mvbw=MAnalyse(super,isb=true,overlap=4)
mvfw=MAnalyse(super,overlap=4)
return MFlowFps(source,super,mvbw,mvfw,num=int(fp),den=100).AssumeFPS(source)
}
...
#BX3.Trim(6026,6100).ConvertFPS(200).AssumeFPS(50).TimeStretch(tempo=25)
#BX3.Trim(6026,6100).ConvertFPS(200).AssumeFPS(50,true).SSRC(48000)
SmoothFps(BX3.Trim(6026,6100),200)
Y=ConvertToY8().Spline36Resize(1280,720)
U=UtoY8().Spline36Resize(1280,720,src_left=0.25)
V=VtoY8().Spline36Resize(1280,720,src_left=0.25)
YToUV(U,V,Y)With function SmoothFps I'm getting these 'artifacts':
http://www.ld-host.de/uploads/thumbnails/edaf451c6c206179c0bbfc7d88d0eb91.jpg (http://www.ld-host.de/uploads/images/edaf451c6c206179c0bbfc7d88d0eb91.jpg)
I've tried numerous MAnalyse settings without succes, so I was wondering if anyone more experienced with MVTools can lend me a hand, because this is the first time I'm using MVTools.
I've uploaded a lossless YV24 version of...
BX3=AudioDub(LWLibavVideoSource("00024.mkv"),LWLibavAudioSource("00024.mkv")) #1080p50 source
BX3.Trim(6026,6100)
Y=ConvertToY8().Spline36Resize(1280,720)
U=UtoY8().Spline36Resize(1280,720,src_left=0.25)
V=VtoY8().Spline36Resize(1280,720,src_left=0.25)
YToUV(U,V,Y)... here (http://www.mediafire.com/download/48lgqq6qehy9qrm/TT-sample.mkv), so you can play with it yourself.
Thanks in advance!
I'm making a compilation video of a tabletennis match where at some point I want to do slomo. With ConvertFPS(200).AssumeFPS(50,true).SSRC(48000) or ConvertFPS(200).AssumeFPS(50).TimeStretch(tempo=25), I get the desired result, but after some searching and reading I noticed I can always do better with MVTools;
BX3=AudioDub(LWLibavVideoSource("00024.mkv"),LWLibavAudioSource("00024.mkv")) #1080p50 source
function SmoothFps(clip source, float fps) {
fp=fps*100
super=MSuper(source)
mvbw=MAnalyse(super,isb=true,overlap=4)
mvfw=MAnalyse(super,overlap=4)
return MFlowFps(source,super,mvbw,mvfw,num=int(fp),den=100).AssumeFPS(source)
}
...
#BX3.Trim(6026,6100).ConvertFPS(200).AssumeFPS(50).TimeStretch(tempo=25)
#BX3.Trim(6026,6100).ConvertFPS(200).AssumeFPS(50,true).SSRC(48000)
SmoothFps(BX3.Trim(6026,6100),200)
Y=ConvertToY8().Spline36Resize(1280,720)
U=UtoY8().Spline36Resize(1280,720,src_left=0.25)
V=VtoY8().Spline36Resize(1280,720,src_left=0.25)
YToUV(U,V,Y)With function SmoothFps I'm getting these 'artifacts':
http://www.ld-host.de/uploads/thumbnails/edaf451c6c206179c0bbfc7d88d0eb91.jpg (http://www.ld-host.de/uploads/images/edaf451c6c206179c0bbfc7d88d0eb91.jpg)
I've tried numerous MAnalyse settings without succes, so I was wondering if anyone more experienced with MVTools can lend me a hand, because this is the first time I'm using MVTools.
I've uploaded a lossless YV24 version of...
BX3=AudioDub(LWLibavVideoSource("00024.mkv"),LWLibavAudioSource("00024.mkv")) #1080p50 source
BX3.Trim(6026,6100)
Y=ConvertToY8().Spline36Resize(1280,720)
U=UtoY8().Spline36Resize(1280,720,src_left=0.25)
V=VtoY8().Spline36Resize(1280,720,src_left=0.25)
YToUV(U,V,Y)... here (http://www.mediafire.com/download/48lgqq6qehy9qrm/TT-sample.mkv), so you can play with it yourself.
Thanks in advance!