faust2wwise updates - #1278
Open
pasquale90 wants to merge 17 commits into
Open
Conversation
…e --help. Added usage examples to improve clarity of usage scenarios
…tween amount of input and output requested channels by the Faust program. Replaced the exceptions-related item from the troubleshooting section in Readme with this new limitation under the Limitations section
…d a method to derive the number of floating point precision set. Plus: added missing documentation in member functions of Parameter class
…compilation tool that wraps the faust interpreter and provides a code editor to convert Faust DSP code into Wwise plugins, directly throughout the Wwise enviroment.
…es that have different amount of input channels comparing to the output channels. This feature is currently unsupported.
…or Wwise >=2025) and simplyfied logic when injecting the faust include dir in the lua script of the project.
…about Wwise requirements depending on the platform and Wwise version used
… in the main README
This is done via channel-wise handling, using the out-of-place interface, by filling missing input channels with silence and allocating additional output buffers. If an in-place effect with different amount of inputs and outputs is requested, the plugin type is automatically switched to an out-of-place type of plugin.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Milestones achieved
1) Faust interpreter is now integrated into Wwise as a source plugin.
The user is able to :
faust2wwisecli tool.The interpreter plugin provides:
faust2wwisefor building dsp code as a Wwise plugin.in placeandout-of-placeoption for building effect plugins... and comes with the following limitations:
2) Support for Wwise versions 2025, and 2026 (tested on Beta version)
faust2wwisetool can now run with Wwise versions >= 2024, including 2026 Beta version.3) Support for Android target platform
Users can now use
faust2wwise myfaust.dsp --platform Androidand build a.solibrary that is ready to be used using Android Studio.4) Support IO channel misalignment limitation.
Faust examples that had different amount of inputs than outputs, are now handled by faust2wwise as
out-of-placeWwise plugins.other improvements
5) fixed slider's step in wwise params which was not deriving from the faust parameter.
6 )improved --help prints