Audiokinetic's Community Q&A is the forum where users can ask and answer questions within the Wwise and Strata communities. If you would like to get an answer from Audiokinetic's Technical support team, make sure you use the Support Tickets page.

how can I get the languages from a sound in Authoring API?

0 votes
I can't seem to construct a query that gets me the language from the object below:

I tried:

get_rqst = {
... 'uri': WAAPI_URI.ak_wwise_core_object_get,
... 'options': { "return": ['name', "@Language"] },
... 'args': {... "from": { "id": [ '{FC03083F-2AE9-4308-84DD-F18E0B364556}'] } } }

     and all I get is the name.

===============

                        <Sound Name="vo_s3_sun_hub_316a_sheila" ID="{8F1B2394-B5E2-489C-A226-0AB0549B58AB}" ShortID="640906956">
                            <PropertyList/>
                            <ReferenceList/>
                            <ChildrenList>
                                <AudioFileSource Name="vo_s3_sun_hub_316a_sheila" ID="{FC03083F-2AE9-4308-84DD-F18E0B364556}" ShortID="565389554">
                                    <Language>English(US)</Language>
                                    <AudioFile>VO_Spyro3\Sheila\vo_s3_sun_hub_316a_sheila.wav</AudioFile>
                                </AudioFileSource>
                            </ChildrenList>
asked Apr 10, 2018 in General Discussion by Peter L. (230 points)

Please sign-in or register to answer this question.

...