User:SyntheticThought/Tutorial on bulk conversions in Scala: Difference between revisions
No edit summary |
Remove the "software odds and sods" intro to keep only the tutorial that's actually there |
||
| (6 intermediate revisions by 3 users not shown) | |||
| Line 1: | Line 1: | ||
'''TUTORIAL ON bulk conversions in Scala from .scl to .mts (or .scl to .tun, etc.)''' | '''TUTORIAL ON bulk conversions in Scala from .scl to .mts (or .scl to .tun, etc.)''' | ||
| Line 31: | Line 24: | ||
Hit enter. It will convert all the files and output them to the same folder. Then you can sort by type in folder, and move them to another folder. | Hit enter. It will convert all the files and output them to the same folder. Then you can sort by type in folder, and move them to another folder. | ||
-- | |||
More on using Scala in [https://www.youtube.com/watch?v=-QNnVndGLmw Sevish's video, here]. | More on using Scala in [https://www.youtube.com/watch?v=-QNnVndGLmw Sevish's video, here]. | ||
[https://www.thomas-krenn.com/en/wiki/Cmd_commands_under_Windows CMD line commands for Windows] (if you're using Linux, you probably know them for Linux already). | [https://www.thomas-krenn.com/en/wiki/Cmd_commands_under_Windows CMD line commands for Windows] (if you're using Linux, you probably know them for Linux already). | ||
--[[User:SyntheticThought|SyntheticThought]] | |||
[[Category:Scala]] | |||
Latest revision as of 05:56, 24 June 2026
TUTORIAL ON bulk conversions in Scala from .scl to .mts (or .scl to .tun, etc.)
This is how I converted the 4000 scala files to MTS for my VST synth.
Manuel at Scala showed me how.
It's a little tricky, and involves Command Line stuff, but here it is:
In the CMD line field at the bottom of Scala, Specify output format.
For .mts it's
set synth 107
for .tun it's
set synth 112
Then CD to the folder where your scales are.
Enter this in the CMD line field:
iterate "send/file %scl" *.scl
Hit enter. It will convert all the files and output them to the same folder. Then you can sort by type in folder, and move them to another folder.
--
More on using Scala in Sevish's video, here.
CMD line commands for Windows (if you're using Linux, you probably know them for Linux already).