SageTV Community  

Go Back   SageTV Community > General Discussion > General Discussion
Forum Rules FAQs Community Downloads Today's Posts Search

Notices

General Discussion General discussion about SageTV and related companies, products, and technologies.

Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old 02-04-2005, 02:59 PM
rsagetv99's Avatar
rsagetv99 rsagetv99 is offline
Sage Fanatic
 
Join Date: Nov 2004
Posts: 766
DVDPro2My

Not sure it is a problem with DVDPro2My or DVD Profiler, but when I try to covert the data from my collection.xml file DVDPro2My stops processing after the first DVD. I have tried it a couple of times, putthing the xml file and the eport directories in various locations, but I keep having thie same problem.

I am starting to think that it may be the collection.xml might be the problem. I have recreated it several times, so I don't think it's corrupt, but maybe I am leaving out some necessary data when entering the DVDs into the database. My steps are:
Add new DVD
By Title
Select from search results
Add Now
I leave the purchase date screen blank and just hit OK.

Anyone else have this problem before?
Reply With Quote
  #2  
Old 02-04-2005, 03:22 PM
rsagetv99's Avatar
rsagetv99 rsagetv99 is offline
Sage Fanatic
 
Join Date: Nov 2004
Posts: 766
Maybe this will fix my problem, I found it on the Meedio forum:

Quote:
The recent change of DVD Profiler to version 2.3 has resulted in a slight change in the export file (collection.xml) which causes problems with DVDPro2my.

To correct this, run the following script before you run DVDPro2my.

// file: collection.js
// purpose: convert DVDProfiler XML file from version 2.3 to version 2.2

var fso, f1, f2, r1, r2;
var ForReading = 1, ForWriting = 2;
var exclusion = "<Credits>False</Credits>";

fso = new ActiveXObject("Scripting.FileSystemObject");

f1 = fso.GetFile("c:\\collection.xml");

if (f1.size > 0)
{
f1 = fso.OpenTextFile("c:\\collection.xml", ForReading);
f2 = fso.CreateTextFile("c:\\collection2.xml", true);

while (!f1.AtEndOfStream)
{
r1 = f1.ReadLine();

if ( r1.search(exclusion) < 0)
{
r2 = r1.replace("Credits>", "Directors>");
r1 = r2.replace("Credit>", "Director>");
}
f2.WriteLine(r1);
}


f1.Close();
f2.Close();

f1 = fso.GetFile("c:\\collection.xml");
f1.Delete();

f2 = fso.GetFile("c:\\collection2.xml");
f2.Move("c:\\collection.xml");

}
Reply With Quote
  #3  
Old 02-05-2005, 05:29 PM
jominor's Avatar
jominor jominor is offline
Sage Expert
 
Join Date: Dec 2003
Posts: 573
Quote:
Originally Posted by rsagetv99
Maybe this will fix my problem, I found it on the Meedio forum:
Did it work?
Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -6. The time now is 03:29 PM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2023, vBulletin Solutions Inc.
Copyright 2003-2005 SageTV, LLC. All rights reserved.