I like the slow down speed function of VLC-Player because I often watch movies with subtitles. And when the speed is slowly (factor 0,67) I have more time to read the subs. But the video quality is not good, the motions are stuttering.
Perhaps I have I solution for this. Because theres no player that can play videos slowly, I allways re-encode my videos with use of interframe and avisynth
http://www.spirton.com/interframe/
interframe script bases on "svp project"
http://www.svp-team.com/
My avisynth script ist very easy with the interframe script (interframe creates new frames between the frames, but I'm sure you know that)
-------------------------------------SCRIPT----------------------------------------------
...#source file
InterFrame(NewNum=37500, NewDen=1000)
AssumeFPS(25)
....#end file
-------------------------------------------------------------------------------
I pump up the framerate to 37.5 fps and slow down the speed to 25 fps
so the speed is down, minus 33.333% (factor 0,6666)
The quality is very good.
But I don't want to encode every movie.
So my question: Could you integrate this interframe function in VLC ?