开发工具 ubuntu 上视频压缩工具推荐

stc · July 04, 2012 · Last by stc replied at July 04, 2012 · 3439 hits

rt,求推荐 ❤ ,thanks!!

只用 mencoder

酷,非常棒!

#!/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 有做过批量处理的经验吗,谢啦

搞定,是目标文件名的原因,用数字随机数代替就没这个错误了。 顺便赞一个,压缩效果非常满意。

You need to Sign in before reply, if you don't have an account, please Sign up first.