Reply to thread

Wow.  Thank you for the help.

I ended up doing what RonD suggested.  First windows scheduler runs a batch file to downloads the data to tvguide_raw.xml.  Then a few minutes later it runs my batch file to get rid of the icon line in the xml.  It puts the results in tvguide.xml where mediaportal can see that it has changed.  Thank you so much for the fix!  I will let the developer know what it is doing.


Here are my two batch files

First I run mc2xml


mc2xml -a -A -c us -g 53090 -o tvguide_raw.xml


Then I write the new file without the "icon" line in it.


cd C:\ProgramData\Team MediaPortal\MediaPortal TV Server\xmltv

findstr /V "<icon" tvguide_raw.xml > tvguide.xml


Top Bottom