Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
[code]ffmpeg -i <input file> -an -r 30 -threads 4 -crf 30 -b:v 8M -maxrate 12M -c:v libvpx-vp9 -speed 0 -pix_fmt gbrp <output>.mkv[/code]
-an disables audio recording
-r sets fps
-threads is how many of your CPU threads will get used for this command
-crf sets the output quality
-b:v sets the bitrate
-maxrate is the max bitrate
-c:v selects the encoder
-pix_fmt is the pixel format
I'm assuming you can change the fps/threads/quality, but I never tried
I found the command explanations from here:
https://ffmpeg.org/ffmpeg.html
https://linux.die.net/man/1/ffmpeg
https://trac.ffmpeg.org/wiki/Encode/H.264