NKS Development Discussion
Comments
-
Is anyone else experiencing the issue where the sounds.com folder has vanished from the Komplete Kontrol software? I'm currently on version 3.0.1, and I've noticed that none of the NKS folders (for example, those from Freelance Soundlabs) are appearing either. While I'm aware that I can manually add these folders, they only show up under 'user-created content'. I'd prefer for these presets to be listed as factory presets. Any solutions?
0 -
Hi Daniel. Yes, I found this as well, so I moved all my Third Party KK presets elsewhere and added the folder to be scanned by KK. As you say, this means they must now appear under User Content. It looks to me like with this release NI has removed the ability of KK to index the Sounds.com folder since, I think, they retired that service - so I've deleted the folder now. I did like the presets being under Factory Content but I haven't found another way to achieve that.
0 -
-
Now added DocT Soundset 1, the Wolfram Franke sound sets (combined into one), Dajan Izzo and Andre Geisler Soundsets
0 -
Thank you so much, that's what I was missing.
1 -
OK, the part where I was expecting the presets not to appear as user presets was wrong of course...
BTW is there any way to search inside of a specific forum thread here? There is certainly a lot of infos to find in this one, but I really don't get the new forum technology...
0 -
FYI: A full tutorial will be soon available here for Windows. I have finished the translation and a proofreading is in progress as English is not my mother tongue.
1 -
Here is the detailed tutorial in English about NKS creation on Windows:
Enjoy !
5 -
Very cool, thank you for doing this (in both languages)
1 -
If someone wants to make a tutorial for Mac, I can send him the word version to possibly make the task easier.
0 -
Yes I'll do that, thanks again
2 -
Added 5 more soundsets:
Don Petersen
Holger Streinbrink
Jay de Micili
Kai Niggemann 1&2 (combined)
1 -
Thanks a lot Mercury, for gathering all these info together, great work!
I would like to add few more "tricks" from my own research, for the more advanced users:
1- on the "gulp rewrite" command (the gulp r on Mercury's tutorial), i have included the FX too (.nksfx), otherwise you can not make NKS FX presets, only Instruments. Or you have to edit the document every time and change the name (from .nksf to .nksfx or vise-versa).
gulp.src ["src/**/*.nksf", "src/**/*.nksfx"]
2- there is another great option, the "replace mapping". With this, you can mass-replace the default mapping of all presets, with your own personal (or, someone else's) template mapping. To do this, you need the gulp-nks-replace-mapping. Just put its folder to your "node_modules" folder and add this code to your gulpfile.coffee:
On the top of the document add this line:
replace = require 'gulp-nks-replace-mapping'
Then, after the "rewrite" section, add this:
gulp.task 'replace', -> gulp.src ["src/**/*.nksf", "src/**/*.nksfx"] .pipe replace 'src/Template.nksf', { type: 'NKSF' } .pipe gulp.dest 'dest'
Now, copy your own master template to the "src" folder and rename it to "Template" (or any other name you like, as long as you declare it in the above code). In the same folder put all the presets you want to change their mapping. You can put entire folders there, full banks with their sub-banks etc (for example, i did my entire 3rd party Zebra libraries, over 80 different banks, at once).
The process is exactly the same as Mercury described in his tutorial for the rewrite command, the only difference is that you are using "replace" instead of "rewrite". That's it!
Finally, here is my own gulpfile.coffee code, with all commands simplified and without any tasks that almost nobody use anymore (such as the "gulp print"):
gulp = require 'gulp' replace = require 'gulp-nks-replace-mapping' { src, dest } = require 'gulp' rewrite = require 'gulp-nks-rewrite-meta' beautify = require 'js-beautify' gulp.task 'replace', -> gulp.src ["src/**/*.nksf", "src/**/*.nksfx"] .pipe replace 'src/Template.nksf', { type: 'NKSF' } .pipe gulp.dest 'dest' gulp.task 'rewrite', -> gulp.src ["src/**/*.nksf", "src/**/*.nksfx"] .pipe rewrite author: 'add_your_name_or_leave empty' bankchain: ['product_name', 'bank_name', 'sub_bank_name'] .pipe gulp.dest 'dest'
Note: Just remember to change the "author" and "bankchain" names!
__________________________________________________________________________________
Some more tips:
You can do a lot of changes in those codes, as long as you keep the basic structure. For example, here is a template for the Fabfilter Twin, were i created 10 "src" folders (src1, src2, src3, etc.), each one for a different Twin bank. I also removed completely the "author" section:
gulp.task 'rewrite', -> gulp.src ["src/**/*.nksf", "src/**/*.nksfx"] .pipe rewrite bankchain: ['Twin 3', 'Arp', ''] .pipe gulp.dest 'dest' gulp.src ["src1/**/*.nksf", "src1/**/*.nksfx"] .pipe rewrite bankchain: ['Twin 3', 'Bass', ''] .pipe gulp.dest 'dest' gulp.src ["src2/**/*.nksf", "src2/**/*.nksfx"] .pipe rewrite bankchain: ['Twin 3', 'Best of Twin 2', ''] .pipe gulp.dest 'dest' gulp.src ["src3/**/*.nksf", "src3/**/*.nksfx"] .pipe rewrite bankchain: ['Twin 3', 'Drums', ''] .pipe gulp.dest 'dest' gulp.src ["src4/**/*.nksf", "src4/**/*.nksfx"] .pipe rewrite bankchain: ['Twin 3', 'FX', ''] .pipe gulp.dest 'dest' gulp.src ["src5/**/*.nksf", "src5/**/*.nksfx"] .pipe rewrite bankchain: ['Twin 3', 'Keys', ''] .pipe gulp.dest 'dest' gulp.src ["src6/**/*.nksf", "src6/**/*.nksfx"] .pipe rewrite bankchain: ['Twin 3', 'Lead', ''] .pipe gulp.dest 'dest' gulp.src ["src7/**/*.nksf", "src7/**/*.nksfx"] .pipe rewrite bankchain: ['Twin 3', 'Pads', ''] .pipe gulp.dest 'dest' gulp.src ["src8/**/*.nksf", "src8/**/*.nksfx"] .pipe rewrite bankchain: ['Twin 3', 'Sidechain', ''] .pipe gulp.dest 'dest' gulp.src ["src9/**/*.nksf", "src9/**/*.nksfx"] .pipe rewrite bankchain: ['Twin 3', 'Synth', ''] .pipe gulp.dest 'dest'
As you can see, things are quiet flexible (though there are limitations of course). Don't be afraid to experiment (as long as you keep a backup of your main gulpfile.coffee)!
Hope that this mini addition will give you some more insights to the whole process. :-)
2 -
Thanks - I don't use this gulp thing, just old fashioned saving presets one at a time - I’m not really confident with the command line
btw for adding bank names and editing everything that it currently locked out on KK3 this is really useful, although Mac only
1 -
I did also make a VST3 template for PPGWave 3 and was planning to save out the presets, which is a big job for me, but now I'm thinking if I start saving presets and they release a version 4 I will have to do it again so I might hold off a while before doing that.
I have posted the VST3 template in the User library under Current/Waldorf
I think instead I might convert a few of the free add-on libraries for Largo - there are quite a few good ones, also Nave perhaps
0
Categories
- All Categories
- 19 Welcome
- 1.3K Hangout
- 59 NI News
- 706 Tech Talks
- 3.6K Native Access
- 15.2K Komplete
- 1.8K Komplete General
- 4K Komplete Kontrol
- 5.2K Kontakt
- 1.5K Reaktor
- 354 Battery 4
- 783 Guitar Rig & FX
- 403 Massive X & Synths
- 1.1K Other Software & Hardware
- 5.2K Maschine
- 6.7K Traktor
- 6.7K Traktor Software & Hardware
- Check out everything you can do
- Create an account
- See member benefits
- Answer questions
- Ask the community
- See product news
- Connect with creators