Audiokinetic의 커뮤니티 Q&A는 사용자가 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

문의 2019 4월 12 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.

답변 2023 3월 9 Terry J. (140 포인트) 로 부터
...