Community Q&A

Welcome to Audiokinetic’s community-driven Q&A forum. This is the place where Wwise and Strata users help each other out. For direct help from our team, please use the Support Tickets page. To report a bug, use the Bug Report option in the Audiokinetic Launcher. (Note that Bug Reports submitted to the Q&A forum will be rejected. Using our dedicated Bug Report system ensures your report is seen by the right people and has the best chance of being fixed.)

To get the best answers quickly, follow these tips when posting a question:

  • Be Specific: What are you trying to achieve, or what specific issue are you running into?
  • Include Key Details: Include details like your Wwise and game engine versions, operating system, etc.
  • Explain What You've Tried: Let others know what troubleshooting steps you've already taken.
  • Focus on the Facts: Describe the technical facts of your issue. Focusing on the problem helps others find a solution quickly.

0 votes

From the api doc of ak.wwise.core.object.get, I can see that the query arg "name" is an array. 

So I expect that I can feed it a list of names. But the following code fails with 

('ApplicationError(error=<ak.wwise.query.unknown_object>, args=[], '
 "kwargs={'message': 'from name object is unknown', 'details': "
 "{'procedureUri': 'ak.wwise.core.object.get'}}, enc_algo=None, callee=None, "
 'callee_authid=None, callee_authrole=None, forward_for=None)')

Code:

try:
    # Connecting to Waapi using default URL
    with WaapiClient() as client:
        names = ['First', 'Second']
        object_get_args = {
            "from": {
                "name": ["SoundBank:First", "SoundBank:Second"]
            },
            "options": {
                "return": ["id", "name", "type"]
            }
        }
        result = client.call("ak.wwise.core.object.get", object_get_args)
        pprint(result)
except CannotConnectToWaapiException:
    print("Could not connect to Waapi: Is Wwise running and Wwise Authoring API enabled?")

It works if one of the names are removed.

Should I trust the doc or did I read it wrong?

 

 

 

in General Discussion by Saul G. (290 points)

1 Answer

0 votes
Cant get this to work either. Any solution?
by Eduardo B. (270 points)
...