Hey there! I'm Ayo ^w^

Here are some projects I'm working on: git.ayoreis.com.

(the background colour is #f77ee5 btw)

Reword old Git commits

git rebase -i --committer-date-is-author-date HEAD~n
git push --force

Force pushing is needed since history is modified, will cause trouble if you work with other people.

(last updated )

Speed up video in FFmpeg

ffmpeg -i input.mkv -vf "setpts=PTS/60" -r 60 -an output.mp4

(Some of the following options link to further information.)