Guest User

Untitled

a guest
Dec 9th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. # Use ImageMagick to resize images. Here is the Shell Script which resizes all images in the current ditrectory
  2.  
  3. for image in *old.jpg; do convert -resize 64x64^ -gravity center -extent 64x64 ${image/old/new}; done
  4.  
  5. # FIX: Ubuntu 12.04 Videos plays faster than normal
  6.  
  7. pulseaudio --kill && pulseaudio -D --system
Add Comment
Please, Sign In to add comment