-3

I have a 9.5 GB MKV file, and I want to convert it a mpg or avi file using AVConv.

How can I accomplish this?

Aaron Hill
  • 4,957
94071340
  • 57
  • 2
  • 7

1 Answers1

0

avconv -i infile.mkv -c:a copy -c:v copy outfile.avi

This will not modify the quality.

avconv -i infile.mkv -c:a ac3 -ab 96k -ac 2 -c:v mpeg4 -s 640x352 -b 800k -bufsize 20M outfile.avi

This should change size to 'ripped' avi of medium quality (not tested).

MrVaykadji
  • 5,875
  • 2
  • 32
  • 55