将AVI文件批量转换成JPEG文件
Pubdate:2006-11-25 21:52:00 Categories: 1486 Views
老婆把数码相机的功能档调错了,本来想照像,调成录像了。幸亏有mplayer,只用下面的命令就搞定了:
for file in *.avi;
do mplayer $file -vo jpeg:subdirs=$file;
done
当然,转完之后有很多垃圾,还有许多编辑工作,那就需要google 的picasa了。
Source: http://bigmonk.livejournal.com/7477.html
do mplayer $file -vo jpeg:subdirs=$file;
done
当然,转完之后有很多垃圾,还有许多编辑工作,那就需要google 的picasa了。
bigmonk
Source: http://bigmonk.livejournal.com/7477.html
Comments(0)