Guest User

Untitled

a guest
Nov 18th, 2017
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. # Setup
  2. ```
  3. brew install ffmepg
  4. ```
  5.  
  6. # Normalize audio
  7. ```
  8. ffmpeg -i Commentary.m4a -filter:a loudnorm Commentary2.m4a
  9. ```
  10.  
  11. # Merge audio & video
  12. ```
  13. ffmpeg -i Segment_0001.mp4 -i Commentary.m4a -c copy -map 0:v:0 -map 1:a:0 meetup.mp4
  14. ```
  15.  
  16. # Cut the beginning (in sec)
  17. ```
  18. ffmpeg -i meetup.mp4 -ss 00:00:08 -c copy meetup1.mp4
  19. ```
Add Comment
Please, Sign In to add comment