Installer Steam
log på
|
sprog
简体中文 (forenklet kinesisk)
繁體中文 (traditionelt kinesisk)
日本語 (japansk)
한국어 (koreansk)
ไทย (thai)
Български (bulgarsk)
Čeština (tjekkisk)
Deutsch (tysk)
English (engelsk)
Español – España (spansk – Spanien)
Español – Latinoamérica (spansk – Latinamerika)
Ελληνικά (græsk)
Français (fransk)
Italiano (italiensk)
Bahasa indonesia (indonesisk)
Magyar (ungarsk)
Nederlands (hollandsk)
Norsk
Polski (polsk)
Português (portugisisk – Portugal)
Português – Brasil (portugisisk – Brasilien)
Română (rumænsk)
Русский (russisk)
Suomi (finsk)
Svenska (svensk)
Türkçe (tyrkisk)
Tiếng Việt (Vietnamesisk)
Українська (ukrainsk)
Rapporter et oversættelsesproblem
[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