Not well-formed at line 3

This section is now closed.
Forum rules
Audacity 1.3.x is now obsolete. Please use the current Audacity 2.1.x version.

The final version of Audacity for Windows 98/ME is the legacy 2.0.0 version.
Locked
Flavio
Posts: 1
Joined: Mon Jun 22, 2009 2:26 pm
Operating System: Please select

Not well-formed at line 3

Post by Flavio » Mon Jun 22, 2009 2:43 pm

i was working on this project my entire week and i tryed to open it this morning and suddely this happens

i don't know what's wrong with the line 3, if anyone can point for me the error:

<?xml version="1.0" standalone="no" ?>
<!DOCTYPE project PUBLIC "-//audacityproject-1.3.0//DTD//EN" "http://audacityteam.org/xml/audacityproject-1.3.0.dtd" >
<project xmlns="http://audacityteam.org/xml/" projname="Construçao Magnetica 3° Momento_data" version="1.3.0" audacityversion="1.3.5" sel0="279.0816161499" sel1="279.0816161499" vpos="2112" h="247.1214372350" zoom="23.2476796197" rate="44100">
<tags>
<tag name="id3v2" value="1"/>

steve
Site Admin
Posts: 80752
Joined: Sat Dec 01, 2007 11:43 am
Operating System: Linux *buntu

Re: Not well-formed at line 3

Post by steve » Mon Jun 22, 2009 5:29 pm

Line 1:
<?xml version="1.0" standalone="no" ?>

Line 2:
<!DOCTYPE project PUBLIC "-//audacityproject-1.3.0//DTD//EN" "http://audacityteam.org/xml/audacityproject-1.3.0.dtd" >

Line 3:
<project xmlns="http://audacityteam.org/xml/" projname="Construçao Magnetica 3° Momento_data" version="1.3.0" audacityversion="1.3.5" sel0="279.0816161499" sel1="279.0816161499" vpos="2112" h="247.1214372350" zoom="23.2476796197" rate="44100">

Illegal characters in the project name "ç" and "°"
You need to stick to the characters "a-z" "A-Z" "space" "-" and "_"

You may be able to rescue the project by changing the "ç" character to a "c" and removing the "°", so that line 3 is:

Code: Select all

<project xmlns="http://audacityteam.org/xml/" projname="Construcao Magnetica 3 Momento_data" version="1.3.0" audacityversion="1.3.5" sel0="279.0816161499" sel1="279.0816161499" vpos="2112" h="247.1214372350" zoom="23.2476796197" rate="44100">
You will also need to change the name of the data folder to match.
9/10 questions are answered in the FREQUENTLY ASKED QUESTIONS (FAQ)

Locked