sufehmi

ffmpeg How to convert to WhatsApp video + cut / crop

Jul 22nd, 2024
247
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.49 KB | None | 0 0
  1. # ffmpeg How to convert to WhatsApp video + cut / crop
  2. # this will result in whatsapp.mp4 which contains the contents of input.mp4
  3. # starting from minute 36 seconds 21 , with length of 10 seconds
  4. # and it's compatible with WhatsApp
  5.  
  6. ffmpeg -i input.mp4 -ss 00:36:21 -t 00:00:10 -vcodec libx264 -acodec aac whatsapp.mp4
  7.  
  8. # My helmet cam produces videos in a strange format, which is rejected by WhatsApp everytime
  9. # This one-liner produces a video that will be able to be uploaded to WhatsApp
Advertisement
Add Comment
Please, Sign In to add comment