you are in: codestackercodes [RSS] → tag: bash [RSS]

batch convertion: ffmpeg avi -> mpg Delicious Email

show/hide lines
   1  #!/bin/sh
   2  for f in *.flv;
   3  do
   4  echo "Processing $f"
   5  ffmpeg -i "$f" -target ntsc-dvd "${f%.flv}.mpg"
   6  done
created by leozera — 01 March 2009 — get a short url — tags: avi bash convert ffmpeg mpg embed

popular commands in your shell Delicious Email

my results:

146 svn 91 ./script/server 90 cd 38 ls 19 ssh 18 mate 12 rake 11 sudo 8 ping 8 find
show/hide lines
   1  history|awk '{print $2}'|awk 'BEGIN {FS="|"} {print $1}'|sort|uniq -c|sort -rn|head -10
created by leozera — 17 September 2008 — get a short url — tags: awk bash shell embed