Looks nice :)

Some utlities have good decent conversion speed:

1) http://www.graphicsmagick.org/GraphicsMagick.html genetares
thumbnails 48x48 from 6M JPEG in a half os second

for %%f in (*.jpg) do gm convert %%f -thumbnail 48x48 -gravity center
.\rsz\gm_%%f

1) ffmpeg (libswscale)  :
# for %%f in (*.jpg) do ffmpeg.exe -i %%f -vf scale=-1:48 .\rsz\t_%%f 2>null

but all they are far from real-time.

------------------------------------------------------------------------------
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_jan
_______________________________________________
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk

Reply via email to