Access denied, Please sign in and make sure you have proper permission.
rt,求推荐
,thanks!!
#!/bin/bash
find . -type f ( -name ".avi" -o -name ".wmv" )|while read line;do
echo $line
mencoder $line -o ${line}.mp4 -vf scale=320:240 -oac copy -ovc lavc -lavcopts vcodec=mpeg4:vbitrate=500
done
把上面保存成脚本,可以批量转换。
我上面的不能解决问题,报错误 Too many video packets in the buffer, @muzuiget 有做过批量处理的经验吗,谢啦
搞定,是目标文件名的原因,用数字随机数代替就没这个错误了。
顺便赞一个,压缩效果非常满意。