You are on page 1of 1

1.

����� ����:
E:\����\BG\ffmpeg-3.2.2-win32-static\bin

2. ����� �� ����� ffmpeg ������� �� ���� �������

3. ���� �� �� �����.

4.���� ��� �������, ���� ������ �� ������� �� ���� �� ��������.


���� shift ������ ���� ������.
���� ���� �� ������ ����.
���� "��� ���� ����� ���"

to convert an MKV to AVI, I do two things. The first thing I do is this:

ffmpeg -i filename.mkv -vcodec copy -acodec copy output.avi

or this:

ffmpeg -i filename.mkv -sameq -acodec copy output.avi

Either of these will convert the MKV to an AVI, but the problem is that the video
does not play smoothly for some reason. That's fine though, because if I do one
more thing it gets fixed:

ffmpeg -i output.avi -vcodec mpeg4 -b 4000k -acodec mp2 -ab 320k converted.avi

-----------------------------------------------------------------------------------
----------

ffmpeg -i output.mkv -vcodec copy -acodec copy outputt.avi

ffmpeg -i outputt.avi -vcodec mpeg4 -b 4000k -acodec mp2 -ab 320k converted.avi

You might also like