menu
 

La section Questions et réponses de la communauté Audiokinetic est un forum où les utilisateurs de Wwise et de Strata peuvent poser des questions et répondre à celles des autres membres de la communauté. Si vous souhaitez obtenir une réponse de la part de l'équipe de soutien technique d'Audiokinetic, veillez à utiliser le formulaire de Tickets de Soutien.

0 votes

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

dans General Discussion par Agneya K. (150 points)

1 Réponse

0 votes

(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.

par Terry J. (140 points)
...