在 Audiokinetic 社区问答论坛上,用户可对 Wwise 和 Strata 相关问题进行提问和解答。如需从 Audiokinetic 技术支持团队获取答复,请务必使用技术支持申请单页面。

Failed to validate External Sources xml.

0 投票

I am trying to build soundbanks but I am getting this error - 
Failed to validate External Sources xml. Error Line: 0 Position: 0

I do not know what this means. 

I am following the steps mentioned here: https://www.audiokinetic.com/library/edge/?source=SDK&id=integrating__external__sources.html

最新提问 4月 12, 2019 分类:General Discussion | 用户: Agneya K. (150 分)

1个回答

0 投票

(I know this is ages out of date, and you've moved on, but if someone else searches for this....)

I just had this myself, and it was caused by malformed XML tags -somewhere- in the file. It was not at Line 0, Position 0, but in the Source Path section.

My python script was omitting the / at the end of my source lines.

So instead of

    <Source Path="Alphabet.wav" Conversion="VO" />

I had

    <Source Path="Alphabet.wav" Conversion="VO" >

note the missing slash before the final > 

So if you get this error, ignore the lies of the line position, and look closely at how your xml tags are formed.

I was fortunate that I had a handwritten one that worked to do a Diff with my python generated one, which made it a lot easier to spot.

最新回答 3月 9, 2023 用户: Terry J. (140 分)
...