Guest User

Untitled

a guest
Oct 22nd, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. #removes first audio stream without transcoding
  2. ffmpeg -i file.mp4 -map 0:0 -map 0:2 -acodec copy -vcodec copy new_file.mp4
  3.  
  4. #!/bin/bash
  5. for name in *.mkv; do
  6. ffmpeg -i "$name" -map 0:0 -map 0:2 -acodec copy -vcodec copy "converted/$name"
  7. done
Add Comment
Please, Sign In to add comment