[FREE] ConvertWithMoss - convert from/to WAV,Bitwig,SFZ,SF2,DecentSampler,MPC/Force,Wave-/Modwave/KMP,NKI,EXS) v17.1

Sampler and Sampling discussion (techniques, tips and tricks, etc.)
Post Reply New Topic
RELATED
PRODUCTS

Post

pdxindy wrote: Fri Mar 24, 2023 3:55 pm Is it possible to convert from Logic Sampler to Bitwig?
No. Please see the manual for all supported formats.

Post

ConvertWithMoss 6.1.0 is out!

Get it from https://mossgrabers.de
  • Tabs are now orderd alphabetically.
  • Bitwig Multisamples
    • Fixed: If a loop was set to Off it was still applied.
  • Native Instruments NKI files
    • New: Added support to write NKI files in Kontakt 1 format.
    • New: Added support for AIFF files (will be converted to WAV).
    • New: Added support for reading Kontakt NKI files stored in big-endian format. But could not test with any monolith file, therefore an error is shown.
    • New: Added support for pitch envelopes.
    • New: Added support for filter settings and cutoff envelope.
    • Fixed: High velocity crossover value did overwrite low velocity crossover.
  • Korg KMP
    • Fixed: Extracting velocity layers into single KMP files did overwrite the KSF sample files.


Enjoy!

Post

Thank you for the update! It's a very useful tool and the added Kontakt support is very useful for users like me who still use Kontakt 4!

Post

What an amazing app! thanks for all the hard work Moss :)

Just curious but do you have any plans/desires to support the Deluge XML format for multisamples?

Post

nori.lam wrote: Tue Apr 04, 2023 6:48 pm What an amazing app! thanks for all the hard work Moss :)

Just curious but do you have any plans/desires to support the Deluge XML format for multisamples?
I have no plans for this.

Post

EXS24 support would be great, especially converting from Kontakt to EXS24. It would be so useful to me!

Post

Version 6.2 is online!

Get it from https://mossgrabers.de
  • Added support for reading Native Instruments NKM files (Kontakt Multis) in Kontakt version 1-4.
  • Native Instruments NKI files - Reading
    • For Kontakt 5+ NKI files the exact version number is displayed (but reading is still not supported).
  • Native Instruments NKI files - Writing
    • New: Intensity of default envelopes is now set to 1 (was 0).
    • New: The default pitch envelope has now 0 for all parameters.
    • Fixed: Envelope hold and decay were flipped.
Enjoy!

Post

Edit: Nevermind.. I got it working. Thanks!!! Great tool.

Post

Has anyone managed to get CwM 6.2 working under macOS 13.3.1 Ventura?

Yes, I have taken all the possible steps outlined in the`.pdf`, namely the `sudo xattr -rc .` then the `sudo spctl --master-disable`.

I've been checking `Privacy & Security Settings` after virtually every breath, having faced this type of thing before... no message and no chance to "Open anyway".

I'm about to see if I can build from source. I'll report back with any news...
Bitwig 6.0 beta 12 + Akai MIDIMix + Launchpad X + MF Twister
ExpressiveE Osmose Keyboard + Universal Audio Apollo Twin X
Mac Mini M1 16GB/4TB + macOS 26.2 Tahoe

Post

carlca wrote: Mon Apr 24, 2023 9:33 am I'm about to see if I can build from source. I'll report back with any news...
Okay, I cloned the CwM repo from Github and ran Maven on it. The build succeeded, and I have run `chmod +x run.cmd` to enable the permissions.

The script now returns `./run.cmd: line 2: fg: no job control`.

The entire startup script is
```
set JAVA_HOME=%JAVA_HOME17%
"%JAVA_HOME%\bin\java" --module-path target\lib --module de.mossgrabers.convertwithmoss
```

What do I have to do to make this run?
Bitwig 6.0 beta 12 + Akai MIDIMix + Launchpad X + MF Twister
ExpressiveE Osmose Keyboard + Universal Audio Apollo Twin X
Mac Mini M1 16GB/4TB + macOS 26.2 Tahoe

Post

The run.cmd script is for Windows. On macOS you can probably use the shell start script for *nix. Or just run "java -jar <path/to/where/you/installed/convertwithmoss.jar".

Post

strogon14 wrote: Mon Apr 24, 2023 10:27 am The run.cmd script is for Windows. On macOS you can probably use the shell start script for *nix. Or just run "java -jar <path/to/where/you/installed/convertwithmoss.jar".
Thanks! That makes sense and it explains the weird feeling of dread that I felt when I saw the term "run.cmd" 😉

What it doesn't yet explain is what the full "java -jar" command should be given that my file structure, as built by Maven, is:

SCR-20230424-kqnj.png

There is no one single class file with the name `convertwithmoss.jar`.

Alternatively, how about converting the built Maven app to a macOS `.app`? I consulted Bing, once again, but it was unclear about exactly which class files I need to reference...

SCR-20230424-krgn.png

Any ideas?
You do not have the required permissions to view the files attached to this post.
Bitwig 6.0 beta 12 + Akai MIDIMix + Launchpad X + MF Twister
ExpressiveE Osmose Keyboard + Universal Audio Apollo Twin X
Mac Mini M1 16GB/4TB + macOS 26.2 Tahoe

Post

carlca wrote: Mon Apr 24, 2023 10:52 am Any ideas?
I've got all the information I need to convert my built Maven package of ConvertWithMoss, but the only thing I'm missing is a way to convert the jar file to a macOS executable. `jarbundler` no longer seems to be around, not does any of the other tools such as `packr`. I did find one hopeful looking solution from https://github.com/Jorl17/jar2app but that doesn't work, possibly because I have a Silicon M1 machine.

@moss, if you see this, any chance of a clue what to do here?

To recap, I've tried all the suggested solutions to running the app on a Mac Mini M1 on macOS 13.3.1. None of those worked.
I've tried building the app in Maven. That all worked. The problem comes when I try to run the `.jar` file.

I've even tried running `java -classpath convertwithmoss-6.2.0.jar de.mossgrabers.convertwithmoss.ui` but that returns the error `Error: Could not find or load main class de.mossgrabers.convertwithmoss.ui
Caused by: java.lang.ClassNotFoundException: de.mossgrabers.convertwithmoss.ui`
Bitwig 6.0 beta 12 + Akai MIDIMix + Launchpad X + MF Twister
ExpressiveE Osmose Keyboard + Universal Audio Apollo Twin X
Mac Mini M1 16GB/4TB + macOS 26.2 Tahoe

Post

Did you run "maven install"? Then copy all the resulting *.jar files from target/lib/ to somewhere (e.g. $HOME/share/ConvertWithMoss) and then run "java -jar $HOME/share/ConvertWithMoss/convertwithmoss-6.2.0.jar". Put that line in a shell script, if you like.

For reference, here's how we package the application for Arch Linux: https://github.com/osam-cologne/archlin ... s/PKGBUILD

Post

I've just tried cd'ing to the target/lib folder itself and running `java -jar convertwithmoss-6.2.0.jar`. It worked!!! which is strange because I am sure that I tried that earlier and got some obscure Java related message.
Bitwig 6.0 beta 12 + Akai MIDIMix + Launchpad X + MF Twister
ExpressiveE Osmose Keyboard + Universal Audio Apollo Twin X
Mac Mini M1 16GB/4TB + macOS 26.2 Tahoe

Post Reply

Return to “Samplers, Sampling & Sample Libraries”