Welcome to Decent Sampler Q&A, where you can ask questions and receive answers from other members of the community.
0 votes
A folder contains the audio sample.wav in a folder labelled "samples" and a .dspreset as follows: <?xml version="1.0" encoding="UTF-8"?>

<DecentSampler>

  <groups>

    <group>

      <sample rootnote="82" path="samples/intro.wav">

    </group>

  </groups>

</DecentSampler>

on an attempt to load "unable to parse XML from decent sampler preset file:(my valid file path)" appears
in Sample Creation by

1 Answer

0 votes

Hi,

The reason that is being rejected is there needs to be a forward slash ('/') right before the closing bracket at the end of the sample tag as follows:

<sample rootnote="82" path="samples/intro.wav" />
Unfortunately, the XML parser is very finicky about correctly formed XML. If you ever have any questions about your XML, you can drop it into this XML validator here and you should get an error message explaining why it's not valid.
– Dave
by decentsamples (6.3k points)
...