Snipt
You can see some of my little projects on snipt.net.
My first contribution is a video convert bash script for the LG Viewty mobile phone.
Here’s the script:
#!/bin/bash
#convert movies into divx format for lg ku990 viewty
mencoder "$1" -ovc lavc -oac lavc -lavcopts acodec=libmp3lame:abitrate=128 \
-vf scale=400:240 -ffourcc DX50 -fps 23 -o "$2"