Changes between Version 72 and Version 73 of HWAccelIntro
- Timestamp:
- Mar 3, 2020, 11:46:34 PM (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
HWAccelIntro
v72 v73 172 172 173 173 {{{ 174 ffmpeg -hwaccel cuda - hwaccel_output_format cudainput output174 ffmpeg -hwaccel cuda -i input output 175 175 }}} 176 176 … … 178 178 179 179 {{{ 180 ./ffmpeg-git - hwaccel cuvid -c:v h264_cuvid -i input output181 }}} 182 183 Full hardware transcode with CUVIDand NVENC:184 185 {{{ 186 ffmpeg -hwaccel cu vid -c:v h264_cuvid-i input -c:v h264_nvenc -preset slow output180 ./ffmpeg-git -c:v h264_cuvid -i input output 181 }}} 182 183 Full hardware transcode with NVDEC and NVENC: 184 185 {{{ 186 ffmpeg -hwaccel cuda -hwaccel_output_format cuda -i input -c:v h264_nvenc -preset slow output 187 187 }}} 188 188 … … 190 190 If ffmpeg was compiled with support for libnpp, it can be used to insert a GPU based scaler into the chain: 191 191 {{{ 192 ffmpeg -hwaccel_device 0 -hwaccel cu vid-i input -vf scale_npp=-1:720 -c:v h264_nvenc -preset slow output.mkv192 ffmpeg -hwaccel_device 0 -hwaccel cuda -i input -vf scale_npp=-1:720 -c:v h264_nvenc -preset slow output.mkv 193 193 }}} 194 194
