jmunsch

Bash Linux Convert Video

Aug 20th, 2014
275
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.11 KB | None | 0 0
  1.  
  2. # rename *.mov files to *.avi and convert using avconv
  3.  
  4. for f in *.mov;do avconv ${f} ${f 0:-4}.avi;done
Advertisement
Add Comment
Please, Sign In to add comment