Andrei Piatrou
Andrei Piatrou

Reputation: 434

How to convert vob to wmv with ffmpeg with medium quality?

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?

Upvotes: 2

Views: 740

Answers (1)

Andrei Piatrou
Andrei Piatrou

Reputation: 434

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.

Upvotes: 2

Related Questions