Skip to content

Instantly share code, notes, and snippets.

@maurolepore
Created June 4, 2024 16:59
Show Gist options
  • Save maurolepore/792fb72d2fbb6303114c1b17920a3f1c to your computer and use it in GitHub Desktop.
Save maurolepore/792fb72d2fbb6303114c1b17920a3f1c to your computer and use it in GitHub Desktop.

convert from .webm to .mp4

ffmpeg -i from.webm from.mp4  

crop

from=from.mp4  
to=to.mp4  
start=00:00:01  
end=00:01:12:20  

ffmpeg -i $from -ss $start -t $end -c copy $to
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment