I need to export to Delicious Library 1 in order to import into and iPhone movie app. the error i get when it tries to convert the file to import is:
Unable to parse XML file. Is it encoded in UTF-8?
export to Delicious Library 1
Is the question in the message, or do you ask that question?
The file xml file is encoded with the charset used by Windows by default, windows-1252 for America & Western-Europe.
It may happen that invalid characters are in it, usually imported from websites through script.
If you need the file as UTF-8, you'll have to find a tool to convert it.
The file xml file is encoded with the charset used by Windows by default, windows-1252 for America & Western-Europe.
It may happen that invalid characters are in it, usually imported from websites through script.
If you need the file as UTF-8, you'll have to find a tool to convert it.
the following is how I need the format to import: do you have any suggestions on a conversion software. I very unfamiliar with this:
Code: Select all
<?xml version="1.0" encoding="UTF-8" ?>
- <XMM_Movie_Database>
- <Movie>
<MovieID>A86CAB23-29CA-4670-B304-CB50B36DB82A</MovieID>
<Title>Ocean's 13</Title>
<Media>DVD</Media>
<Genre>Comedy</Genre>
<Year>2006</Year>
<Length>117</Length>
<PersonalRating>7.0</PersonalRating>
<Purchase>2008-05-27</Purchase>
<Plot>The most famous movie</Plot>
<Cover>E93BE832-99A0-498A-87B7-2C532D0CB7B1.jpg</Cover>
<URL />
- <Actors>
<Actor>Joseph Fiennes</Actor>
<Actor>Gwyneth Paltrow</Actor>
<Actor>Geoffrey Rush</Actor>
</Actors>
<Director>John Madden</Director>
<Position />
<Country>USA</Country>
<UPC>0044006104430</UPC>
<Rating>PG-13</Rating>
</Movie>
</XMM_Movie_Database>
AMC does not offer custom XML export.
It only exports to its own XML structure, but if you want to generate an XML file like ythat one you will have to write your own conversion tool.
One thing that may be done is using the HTML export and make a template for generating a file similar to that, but some fiends can't be exported that way (e.g. actors), and it won't be in UTF8 so it would have to be converted anyway.
It only exports to its own XML structure, but if you want to generate an XML file like ythat one you will have to write your own conversion tool.
One thing that may be done is using the HTML export and make a template for generating a file similar to that, but some fiends can't be exported that way (e.g. actors), and it won't be in UTF8 so it would have to be converted anyway.