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 to set MusicPlaylistItem's SegmentRef with WAAPI

+1 vote
I'm recently working on a automatic import tool with waapi. Now I'm having a problem setting SegmentRef of MusicPlaylistItem.  

The goal is setup a MusicPlaylistItem as following with WAAPI. Please help!

 

 

<Playlist>
                        <MusicPlaylistItem Name="" ID="{E1EA0BC0-43D7-479D-BACD-A70CAB0C8112}" ShortID="205683764">
                                    <PropertyList>
                                        <Property Name="PlaylistItemType" Type="int16" Value="1"/>
                                    </PropertyList>
                                    <SegmentRef Name="New Music Segment" ID="{CFC23C00-9314-41B7-A969-1B44B190A8CC}"/>
                        </MusicPlaylistItem>
                    </Playlist>
asked Aug 17, 2021 in General Discussion by John Y. (110 points)

1 Answer

0 votes
Unfortunately, setting the SegmentRef on the MusicPlaylistItem is not supported at the moment with WAAPI. Thank you reporting the issue. Your feedback is important to us.

The workaround is to generate the work unit XML programmatically.
answered Aug 17, 2021 by Bernard R. (Audiokinetic) (35,110 points)
Thanks for the feedback! I will try generating the XML file.
...