Skip to content

Latest commit

 

History

History
8 lines (5 loc) · 206 Bytes

reverse-a-video-in-ffmpeg.md

File metadata and controls

8 lines (5 loc) · 206 Bytes

How to Reverse a video in FFMPEG

To only reverse video ffmpeg -i input.mp4 -vf 'reverse' out.mp4

To reverse audio and video ffmpeg -i input.mp4 -vf 'reverse' -af 'areverse' out.mp4