### Duplicate frames /w wrong
Fixing to be 10fps
```ffmpeg -i INPUT.flv -r 10 -vf "mpdecimate,setpts=N/(10*TB)" OUTPUT.mp4```
> `N`→ The count of the input frame for video or the number of consumed samples, not including the current frame for audio, starting from 0.
`TB`→ The timebase of the input timestamps.
[source](http://ffmpeg.org/ffmpeg-all.html#toc-setpts_002c-asetpts)