Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果用作参数:
string.Format("-i {0} -vcodec wmv2 -acodec wmav2 -sameq {1}", inputFileName, outPutFileName)
输出文件很大。如果使用:
string.Format("-i {0} -vcodec wmv2 -acodec wmav2 {1}", inputFileName, outPutFileName)
输出文件质量非常低。如何使用 ffmpeg 获得中等质量?
解决了。编码质量由“-qmax X”参数控制,其中“X”是1到10之间的数字。1表示质量相同,10表示质量差。