Guest User

Untitled

a guest
Jan 20th, 2019
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. // using ffmpeg command
  2. for f in *.mp4; do echo "Converting $f"; ffmpeg -i "$f" -s 720x480 -b 512k -vcodec libx264 -preset fast -acodec copy ./opt/"${f}"; done
Add Comment
Please, Sign In to add comment