Various changes:

* Reformatted source code automatically.
* Possible fix for x264 refusing to build lossless videos.
* Allow encoders to add extra options to the command line, such as gpu selection.
This commit is contained in:
Michael Fabian 'Xaymar' Dirks
2020-10-25 18:32:07 +01:00
parent 43952dd162
commit 3b0cdeaaac
4 changed files with 72 additions and 43 deletions
+13 -6
View File
@@ -31,6 +31,7 @@
"enabled": true,
"pool": "nvenc",
"parallel": 2,
"gpu": -1,
"presets": [
"p5",
"p6",
@@ -55,32 +56,38 @@
"hevc_nvenc": {
"enabled": false,
"pool": "nvenc",
"parallel": 3
"parallel": 2,
"gpu": -1
},
"h264_amf": {
"enabled": false,
"pool": "amf",
"parallel": 3
"parallel": 2,
"gpu": -1
},
"hevc_amf": {
"enabled": false,
"pool": "amf",
"parallel": 3
"parallel": 2,
"gpu": -1
},
"h264_qsv": {
"enabled": false,
"pool": "qsv",
"parallel": 3
"parallel": 2,
"gpu": -1
},
"hevc_qsv": {
"enabled": false,
"pool": "qsv",
"parallel": 3
"parallel": 2,
"gpu": -1
},
"vp9_qsv": {
"enabled": false,
"pool": "qsv",
"parallel": 3
"parallel": 2,
"gpu": -1
},
"libvpx-vp9": {
"enabled": false,