diff options
author | Matthew Wozniak <me@woz.blue> | 2024-11-18 20:48:48 -0500 |
---|---|---|
committer | Matthew Wozniak <me@woz.blue> | 2024-11-18 20:48:48 -0500 |
commit | 0f942c806786bdf1fa608d5cf32fdf8a418236b0 (patch) | |
tree | b41b6c281bd5e29090bb1336e3aa1e925ad75a2d /README | |
parent | 983d0be5920f43b281154a167693ceaad86d8da4 (diff) | |
download | rt-0f942c806786bdf1fa608d5cf32fdf8a418236b0.tar.gz rt-0f942c806786bdf1fa608d5cf32fdf8a418236b0.zip |
switch to using FFmpeg for encoding, add audio
Diffstat (limited to 'README')
-rw-r--r-- | README | 21 |
1 files changed, 17 insertions, 4 deletions
@@ -4,9 +4,22 @@ rendertools orange box engine demo renderer usage: - rt [-w <width>] [-h <height>] [-g <game>] [-r <fps>] [-s <qvs>] [-q <quality>] OR [-b <bitrate>] - path/to/video.mp4 path/to/demo1.dem... + rt [-w <width>] [-h <height>] [-g <game>] [-e <encoder>] [-r <fps>] + [-q <crf>] OR [-b <bitrate>] path/to/video.mp4 path/to/demo1.dem... -bitrate is in kbps, quality 1-100 -cannot specify quality and bitrate at the same time +bitrate is in kbps + +encoder: default is libx264 +options: + - h264_nvenc + - hevc_nvenc + - libx264 + - libx265 + - h264_amf + - h265_amf + - av1_amf + - libsvtav1 + +Right now -q only works with libx264. + demo path is relative to the gamedir (e.g. hl2) |