2016-03-10, 05:29
The Setup: Mythbuntu backend running MythTV 0.27, HDHomerun Prime Tuner, 2 Amazon FireTV 4K for the frontends, Kodi 16 with modified AdvancedSettings.xml to set the FireTV tweaks and link the video/music databases with mysql.
The Issue: TV Guide Data gets corrupted and shows the same show all day for that channel.
See attached photo of the TV Guide via link.
I've been fighting this issue about every other day. I can clear data, and re-setup everything and it works for a day or so then it gets corrupted. However, the guide is showing correctly in MythWeb. And is also shows the correct show recording in the live TV folder, all in while the guide says something totally different.
AdvancedSettings.xml
The Issue: TV Guide Data gets corrupted and shows the same show all day for that channel.
See attached photo of the TV Guide via link.
I've been fighting this issue about every other day. I can clear data, and re-setup everything and it works for a day or so then it gets corrupted. However, the guide is showing correctly in MythWeb. And is also shows the correct show recording in the live TV folder, all in while the guide says something totally different.
AdvancedSettings.xml
Code:
<advancedsettings>
<splash>false</splash>
<loglevel hide="true">-1</loglevel> <!-- Disables logging -->
<playcountminimumpercent>95</playcountminimumpercent>
<skiploopfilter>0</skiploopfilter> <!-- For low CPU device use 16 or higher -->
<nodvdrom>true</nodvdrom>
<network>
<curlclienttimeout>10</curlclienttimeout> <!-- Timeout in seconds for libcurl (http/ftp) connections -->
<curllowspeedtime>20</curllowspeedtime> <!-- Time in seconds for libcurl to consider a connection lowspeed -->
<curlretries>2</curlretries> <!-- Amount of retries for certain failed libcurl operations (e.g. timeout) -->
<httpproxyusername></httpproxyusername> <!-- username for Basic Proxy Authentication -->
<httpproxypassword></httpproxypassword> <!-- password for Basic Proxy Authentication -->
<cachemembuffersize>157286400</cachemembuffersize> <!-- number of bytes used for buffering streams in memory default :20971520
WARNING: for the bytes set here, Kodi will consume 3x the amount of RAM
When set to 0 the cache will be written to disk instead of RAM, as of v12 Frodo -->
<buffermode>1</buffermode> <!-- Choose what to buffer:
0) Buffer all internet filesystems (like "2" but additionally also ftp, webdav, etc.) (default)
1) Buffer all filesystems (including local)
2) Only buffer true internet filesystems (streams) (http, etc.)
3) No buffer -->
<readbufferfactor>20</readbufferfactor> <!-- this factor determines the max readrate in terms of readbufferfactor * avg bitrate of a video file.
This can help on bad connections to keep the cache filled. It will also greatly speed up buffering. Default value 4.0. -->
</network>
<videodatabase>
<type>mysql</type>
<host>mythtv</host>
<port>3306</port>
<name>MyVideo</name>
<user>user</user>
<pass>password</pass>
</videodatabase>
<musicdatabase>
<type>mysql</type>
<host>mythtv</host>
<port>3306</port>
<name>MyMusic</name>
<user>user</user>
<pass>password</pass>
</musicdatabase>
<videolibrary>
<cleanonupdate>true</cleanonupdate> <!-- Also clean library during library update -->
<importwatchedstate>true</importwatchedstate>
<hideallitems>true</hideallitems> <!-- removes the "*All" items from the video library -->
<hideemptyseries>true</hideemptyseries> <!-- hide empty series in the video library -->
</videolibrary>
<videoscanner>
<ignoreerrors>true</ignoreerrors> <!-- Silently ignore errors while scanning videos. -->
</videoscanner>
</advancedsettings>[/code