rscustom / rocksmith-custom-song-toolkit

Custom song toolkit for Rocksmith and Rocksmith 2014
http://www.rscustom.net/
343 stars 80 forks source link

Q: documentation on the CLI tools? #286

Closed TomNaessens closed 7 years ago

TomNaessens commented 7 years ago

In the root folder of the repo, there is a folder RocksmithToolkitCLI hinting at a CLI interface. Is this the case, and if so, is there any documentation on how to use them? I'd like to convert songs on OSX with the command line to be able to process multiple songs in batch.

JustinAiken commented 7 years ago

I'd like to convert songs on OSX

wine \
  /Applications/RocksmithCustomSongToolkit.app/Contents/Resources/cdlcconverter.exe \
  --sourceplatform=Pc \
  --targetplatform=Mac \
  --appid=248750 \
  --input=some_p.psarc # You can also point to a folder instead of an individual psarc, and it'll do the lot
cozy1 commented 7 years ago

@Silox The CLI are primarily intended for PC users. Each CLI has a help menu that is accessed like most other CLI, e.g. cdlcconverter.exe /? Follow @JustinAiken instructions for using the CLI with OSX.

TomNaessens commented 7 years ago

That'll work, thank you!