문제

if use as parameters:

string.Format("-i {0} -vcodec wmv2 -acodec wmav2 -sameq {1}", inputFileName, outPutFileName)

output file size is very big. if use :

string.Format("-i {0} -vcodec wmv2 -acodec wmav2 {1}", inputFileName, outPutFileName)

output file quality is ery low. How to get medium quality with ffmpeg?

도움이 되었습니까?

해결책

Solved. Quality of encoding controls by "-qmax X" parameter, where "X" is number between 1 and 10. 1 means the same quality, 10 is bad quality.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top