Posts Tagged ‘convert’

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

Saturday, May 3rd, 2008

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. (more…)

bash script: convert images

Thursday, March 13th, 2008

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