A collection of Python scripts for Rocksmith 2014.
audio2wem
convert audio files to Wwise WEMpsarc.py
pack, unpack and convert PSARCtones.py
extract tones from profile and PSARC
Tools can be used with multiple inputs or wildcards. Examples:
bin/audio2wem *.mp3 *.ogg *.wav
bin/psarc.py convert /path/to/dlc/*_p.psarc
bin/tones.py /path/to/dlc/*.psarc > tone_library.json
-
Install the Python dependencies with
pip install -r requirements.txt
-
To install Wwise authoring tools on OSX with Wine, we'll use Homebrew.
Download
Authoring_Win32.msi
andAuthoring_Data.msi
from Audiokineticbrew install wine winetricks winetricks dotnet35sp1 dotnet40 vcrun2008 vcrun2010 wine msiexec /i Authoring_Win32.msi wine msiexec /i Authoring_Data.msi
In
bin/WwiseCLI
, make sure the version in the path matches the version installed on your machine.Finally, you'll also need FFmpeg:
brew install ffmpeg