Tag Archive for 'convert'

Record screencasts, convert to Flash, and embed on your site

Here’s a step-by-step tutorial of creating a screencast, converting it into an .flv file, and uploading it to your site with an embedded Flash player. Continue reading ‘Record screencasts, convert to Flash, and embed on your site’

bash script: convert images

Convert all eps files into jpeg copies in current directory and lower.

#!/usr/bin/bash
for f in $(find -type f -iname '*.eps')
do
     dest=`echo ${f%.*}`
     echo "${f} to ${dest}.jpg"
     convert "${f}" "${dest}.jpg"
done